⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fileformatexception.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
/**  * Occurs when one of the input files has an incorrect format.   * It specified the file name, the StreamTokenizer, and the error.   *   * @author Waleed Kadous  * @version $Id: FileFormatException.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */package tclass;   import java.io.*; public class FileFormatException extends Exception {        public FileFormatException(){	super();    }        public FileFormatException(StreamTokenizer tokstrm, String expected){	super("On line " + tokstrm.lineno() + " Got: "+tokstrm.toString() +			 " Was expecting: "+ expected);    }    public FileFormatException(String filename, StreamTokenizer tokstrm, String expected){         super("In file \"" + filename + "\" on line " + tokstrm.lineno() + " Got: "+tokstrm.toString() +                          " Was expecting: "+ expected);     }     public FileFormatException(String filename, StreamTokenizer tokstrm, 			       InvalidParameterException ipex){	super("In file \"" + filename + "\" on line " + tokstrm.lineno() + 	      "Invalid Parameters " + ipex.toString());     }    public FileFormatException(String error){	super(error);    }    }    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -