16 lines
211 B
Java
16 lines
211 B
Java
package com.sky.exception;
|
|
|
|
/**
|
|
* 业务异常
|
|
*/
|
|
public class BaseException extends RuntimeException {
|
|
|
|
public BaseException() {
|
|
}
|
|
|
|
public BaseException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
}
|