
com.enofex.naikan.model.serializer.SerializerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naikan-model Show documentation
Show all versions of naikan-model Show documentation
The Naikan Model Module for Naikan the software inventory management tool for dev teams driven
by our CI/CD pipeline.
The newest version!
package com.enofex.naikan.model.serializer;
import java.io.Serial;
public class SerializerException extends Exception {
@Serial
private static final long serialVersionUID = 1L;
public SerializerException(String message) {
super(message);
}
public SerializerException(Throwable cause) {
super(cause);
}
public SerializerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy