com.causecode.exceptions.InvalidParameterException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nucleus Show documentation
Show all versions of nucleus Show documentation
nucleus is a Grails-Groovy plugin which contains utility methods, classes and endpoints.
The newest version!
package com.causecode.exceptions
/**
* An exception class to represent invalid or missing data in request paramaters from the client side.
*
* @author Nikhil Sharma
* @since 0.0.1
*/
class InvalidParameterException extends Exception {
InvalidParameterException(String message = 'Invalid Parameters', Throwable cause = new Throwable()) {
super(message, cause)
}
}