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