org.bouncycastle.dvcs.DVCSException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package org.bouncycastle.dvcs;
/**
* General DVCSException.
*/
public class DVCSException
extends Exception
{
private static final long serialVersionUID = 389345256020131488L;
private Throwable cause;
public DVCSException(String message)
{
super(message);
}
public DVCSException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}