com.enonic.xp.exception.SystemException Maven / Gradle / Ivy
package com.enonic.xp.exception;
import com.enonic.xp.annotation.PublicApi;
@PublicApi
@Deprecated
public final class SystemException
extends BaseException
{
public SystemException( final String message, final Object... args )
{
super( message, args );
}
public SystemException( final Throwable cause, final String message, final Object... args )
{
super( cause, message, args );
}
}