16 lines
555 B
Java
16 lines
555 B
Java
|
|
// DO NOT EDIT - auto-generated by alef
|
||
|
|
// alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
|
||
|
|
package dev.kreuzberg;
|
||
|
|
|
||
|
|
public class CancelledException extends KreuzbergErrorException {
|
||
|
|
/** Creates a new CancelledException with the given message. */
|
||
|
|
public CancelledException(final String message) {
|
||
|
|
super(message);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Creates a new CancelledException with the given message and cause. */
|
||
|
|
public CancelledException(final String message, final Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
}
|