jp.co.cyberagent.aeromock.dsl.exception.AeromockBadGrammarException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeromock-dsl Show documentation
Show all versions of aeromock-dsl Show documentation
Domain specific language for operationg Aeromock.
package jp.co.cyberagent.aeromock.dsl.exception
/**
* Exception when syntax error of aeromock-dsl
* @author stormcat24
*/
class AeromockBadGrammarException extends RuntimeException {
/**
* Constructor
* @param message error message
*/
AeromockBadGrammarException(String message) {
super(message)
}
}