Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/vhdl/VHDLException.java

Go to the documentation of this file.
00001 
00005 package m2m.backend.vhdl;
00006 
00007 public class VHDLException extends Exception {
00008 
00012         private static final long serialVersionUID = 1987495070205076874L;
00013         
00014         public VHDLException(String error) {
00015                 super(error);
00016         }
00017         public VHDLException(String error, Throwable cause) {
00018                 super(error, cause);
00019         }
00020         public VHDLException(Throwable cause) {
00021                 super(cause);
00022         }
00023 }
 All Classes Namespaces Files Functions Variables Enumerations