21 lines
775 B
Java
21 lines
775 B
Java
|
|
// This file is auto-generated by alef — DO NOT EDIT.
|
||
|
|
// alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
|
||
|
|
// To regenerate: alef generate
|
||
|
|
// To verify freshness: alef verify --exit-code
|
||
|
|
// Issues & docs: https://github.com/kreuzberg-dev/alef
|
||
|
|
package dev.kreuzberg;
|
||
|
|
|
||
|
|
/** Exception thrown when input validation fails. */
|
||
|
|
@SuppressWarnings("checkstyle:LineLength")
|
||
|
|
public class InvalidInputException extends KreuzbergRsException {
|
||
|
|
/** Creates a new InvalidInputException. */
|
||
|
|
public InvalidInputException(final String message) {
|
||
|
|
super(1, message);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Creates a new InvalidInputException with a cause. */
|
||
|
|
public InvalidInputException(final String message, final Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
}
|