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

com.causecode.exceptions.InvalidParameterException.groovy Maven / Gradle / Ivy

Go to download

nucleus is a Grails-Groovy plugin which contains utility methods, classes and endpoints.

There is a newer version: 1.1.0
Show newest version
/*
 * Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or
 * without modification, are not permitted.
 */
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)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy