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

com.yahoo.processing.IllegalInputException Maven / Gradle / Ivy

// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.processing;

/**
 * Thrown on illegal input received from the requesting client.
 * Use this instead of the superclass, IllegalArgumentException
 * to signal illegal input to the client without causing logging and stack traces,
 *
 * @author bratseth
 */
public class IllegalInputException extends IllegalArgumentException {

    public IllegalInputException(String message) {
        super(message);
    }

    public IllegalInputException(Throwable cause) {
        super(cause);
    }

    public IllegalInputException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy