Constructors Summary |
---|
public CmpCompilerException()Constructs a new exception with null as its detail message.
super();
|
public CmpCompilerException(String s)Constructs a new exception with the specified detail message.
super(s);
|
public CmpCompilerException(Throwable t)Constructs a new exception with the specified cause and
a detail message.
super(t);
|
public CmpCompilerException(String msg, Throwable t)Constructs a new exception with the specified detail message and cause.
super(msg, t);
|