
com.vendasta.common.v1.CredentialsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common.v1 Show documentation
Show all versions of common.v1 Show documentation
Common objects for java sdk
The newest version!
package com.vendasta.common.v1;
public class CredentialsException extends RuntimeException {
/**
* Because we inherit from Serializable, this is a requirement. It is used
* during deserialization to ensure that the implementation matches that
* used to serialize.
*/
private static final long serialVersionUID = 1L;
public CredentialsException(String message) {
super(message);
}
public CredentialsException(String message, Throwable t) {
super(message, t);
}
public CredentialsException(Throwable t) {
super(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy