Package org.xwiki.lesscss.compiler
Class LESSCompilerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.lesscss.compiler.LESSCompilerException
-
- All Implemented Interfaces:
Serializable
public class LESSCompilerException extends Exception
Exception related to the LESS preprocessor.- Since:
- 6.4M2
- Version:
- $Id: 55bb13ae818d57d67fd12d3a7d6f42b1a72d24c5 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LESSCompilerException(String message)
Construct a new LESSCompilerException object.LESSCompilerException(String message, Exception source)
Construct a new LESSCompilerException object.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LESSCompilerException
public LESSCompilerException(String message)
Construct a new LESSCompilerException object.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
LESSCompilerException
public LESSCompilerException(String message, Exception source)
Construct a new LESSCompilerException object.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).source
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
-