fatiador.WriterArgumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fatiador Show documentation
Show all versions of fatiador Show documentation
Convert flat strings to Java objects and vice-versa.
The newest version!
package fatiador;
public class WriterArgumentException extends Exception {
private static final long serialVersionUID = 1L;
public WriterArgumentException(String message, Throwable cause) {
super(message, cause);
}
public WriterArgumentException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy