Package uk.ac.starlink.ttools.jel
Class CustomCompilationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- gnu.jel.CompilationException
-
- uk.ac.starlink.ttools.jel.CustomCompilationException
-
- All Implemented Interfaces:
java.io.Serializable
public class CustomCompilationException extends gnu.jel.CompilationException
Specialised subclass of JEL's CompilationException. This is provided so that new CompilationExceptions can be generated by code other than that in the JEL librarry - the constructors for the superclass are rather opaque.- Since:
- 1 Nov 2008
- Author:
- Mark Taylor
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CustomCompilationException(java.lang.String msg)
Constructor.CustomCompilationException(java.lang.String msg, gnu.jel.CompilationException base)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getCause()
java.lang.String
getMessage()
-
-
-
Constructor Detail
-
CustomCompilationException
public CustomCompilationException(java.lang.String msg, gnu.jel.CompilationException base)
Constructor.- Parameters:
msg
- messagebase
- existing compilation exception on which this is based
-
CustomCompilationException
public CustomCompilationException(java.lang.String msg)
Constructor.- Parameters:
msg
- message
-
-