com.atomikos.icatch.SysException Maven / Gradle / Ivy
/**
* Copyright (C) 2000-2023 Atomikos
*
* LICENSE CONDITIONS
*
* See http://www.atomikos.com/Main/WhichLicenseApplies for details.
*/
package com.atomikos.icatch;
/**
* An exception for unexpected system errors with nested information.
*/
public class SysException extends RuntimeException
{
private static final long serialVersionUID = -9183281406145817016L;
public SysException (String msg)
{
super(msg);
}
public SysException(String msg, Throwable cause) {
super(msg,cause);
}
}