All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vendasta.common.v1.CredentialsException Maven / Gradle / Ivy

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