Files
fil/packages/java/dev/kreuzberg/IoException.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
520 B
Java
Generated

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