📄 notsupportedexception.java
字号:
package jboost;/** an Exception that is used to alert that a particular method is not supported for this class */public class NotSupportedException extends Exception { public NotSupportedException(String m, String c) { message = "The class "+c +" does not support the method "+m+"\n"; } public String getMessage() {return message;} private String message;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -