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

com.ohadr.crypto.exception.CryptoException Maven / Gradle / Ivy

There is a newer version: 2.1-RELEASE
Show newest version
package com.ohadr.crypto.exception;


public class CryptoException extends RuntimeException
{
	private static final long serialVersionUID = 1L;

	public CryptoException()
	{
		super();
	}

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy