janino.net

org.codehaus.commons.compiler
Class UncheckedCompileException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.codehaus.commons.compiler.UncheckedCompileException
All Implemented Interfaces:
Serializable

public class UncheckedCompileException
extends RuntimeException

A wrapper for a CompileException that extends RuntimeException and is thus unchecked.

See Also:
Serialized Form

Field Summary
 CompileException compileException
          The nested CompileException.
 
Constructor Summary
UncheckedCompileException(CompileException compileException)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

compileException

public final CompileException compileException
The nested CompileException.

Constructor Detail

UncheckedCompileException

public UncheckedCompileException(CompileException compileException)

janino.net