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

com.zoomlion.cloud.common.crypto.CryptoException Maven / Gradle / Ivy

The newest version!
package com.zoomlion.cloud.common.crypto;

/**
 * Root exception for all Shiro runtime exceptions. This class is used as the
 * root instead of {@link java.lang.SecurityException} to remove the potential
 * for conflicts; many other frameworks and products (such as J2EE containers)
 * perform special operations when encountering
 * {@link java.lang.SecurityException}.
 *
 * @since 0.1
 */
public class CryptoException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = -4559689772247497358L;

	/**
	 * Creates a new ShiroException.
	 */
	public CryptoException() {
		super();
	}

	public CryptoException(String message) {
		super(message);
	}

	public CryptoException(Throwable cause) {
		super(cause);
	}

	public CryptoException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy