com.labstack.EmailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of labstack-java Show documentation
Show all versions of labstack-java Show documentation
Official Java client library for the LabStack REST API
The newest version!
package com.labstack;
/**
* Defines the email exception.
*/
public class EmailException extends RuntimeException {
private int code;
public EmailException(int code, String message) {
super(message);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy