-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
ycutilslibrary/src/main/java/com/yc/ycutilslibrary/exception/YcCalculateException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.yc.ycutilslibrary.exception; | ||
|
||
import com.yc.ycutilslibrary.calculator.YcCalculator; | ||
|
||
/** | ||
* 计算异常 | ||
*/ | ||
|
||
public class YcCalculateException extends YcException{ | ||
public YcCalculateException(String msg) { | ||
super(msg); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
ycutilslibrary/src/main/java/com/yc/ycutilslibrary/exception/YcException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.yc.ycutilslibrary.exception; | ||
|
||
/** | ||
* 基础异常类 | ||
*/ | ||
|
||
public class YcException extends Exception { | ||
private String msg = ""; | ||
|
||
public YcException() { | ||
this(""); | ||
} | ||
|
||
public YcException(String msg) { | ||
this.msg = msg; | ||
} | ||
|
||
public String getMsg() { | ||
return msg; | ||
} | ||
|
||
public void setMsg(String msg) { | ||
this.msg = msg; | ||
} | ||
} |