Skip to content

Instantly share code, notes, and snippets.

@lubaochuan
Created September 27, 2022 18:10
Show Gist options
  • Save lubaochuan/6d786db7ae0189bbf52f2d389489c0fc to your computer and use it in GitHub Desktop.
Save lubaochuan/6d786db7ae0189bbf52f2d389489c0fc to your computer and use it in GitHub Desktop.
public class EditorException extends RuntimeException{
private String message = null;
public EditorException(){}
public EditorException(String message){
super();
this.message = message;
}
public String getMessage(){
return message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment