jp.co.cyberagent.aeromock.dsl.exception.AeromockPatternSyntaxException.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
import java.util.regex.PatternSyntaxException;
/**
* Exception when regular expression error.
* Wrap {@link PatternSyntaxException}.
* @author stormcat24
*
*/
class AeromockPatternSyntaxException extends RuntimeException {
/**
* Constructor
* @param message error message
* @param e {@link PatternSyntaxException}
*/
AeromockPatternSyntaxException(String message, PatternSyntaxException e) {
super(message, e)
}
}