Files
fil/packages/java/dev/kreuzberg/UnsupportedFormatException.java
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

16 lines
595 B
Java
Generated

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