parseexception.java

来自「The program is used for the calculations」· Java 代码 · 共 31 行

JAVA
31
字号
package us.k5n.ical;/**  * iCal Parsing Exception.  * @version $Id$  * @author Craig Knudsen, craig@k5n.us  */public class ParseException extends Exception{  public String error;  public String icalText;  public ParseException ( String error, String icalText)   {    super ( error );    this.error = error;    this.icalText = icalText;  }  public String toString ()  {    String ret = super.toString ();    ret += "\nInput iCal data: '" + icalText + "'\n";    return ret;  }}

⌨️ 快捷键说明

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