Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/octaveparser/ParsingException.java

Go to the documentation of this file.
00001 
00008 package m2m.backend.octaveparser;
00009 
00010 
00011 public class ParsingException extends Exception {
00012 
00016         private static final long serialVersionUID = -1186651222955286571L;
00017         
00018         public ParsingException(String error) {
00019                 super(error);
00020         }
00021         public ParsingException(String error, Throwable cause) {
00022                 super(error, cause);
00023         }
00024         public ParsingException(Throwable cause) {
00025                 super(cause);
00026         }
00027 
00028 }
 All Classes Namespaces Files Functions Variables Enumerations