com.lonelystorm.air.asset.exceptions.CompilerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of air-asset Show documentation
Show all versions of air-asset Show documentation
The LonelyStorm Air Asset library provides support to be able to compile SASS files at runtime.
package com.lonelystorm.air.asset.exceptions;
/**
* Exception thrown by Compilers if an error occurs whilst attempting
* to compile the source asset.
*/
public class CompilerException extends Exception {
/**
* Serial Version.
*/
private static final long serialVersionUID = 1L;
/**
* {@inheritDoc}
*/
public CompilerException(String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public CompilerException(String message, Throwable cause) {
super(message, cause);
}
}