notsupportedexception.java

来自「Boosting算法软件包」· Java 代码 · 共 18 行

JAVA
18
字号
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 + =
减小字号Ctrl + -
显示快捷键?