All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.cyberagent.aeromock.dsl.exception.AeromockPatternSyntaxException.groovy Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
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) } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy