com.enonic.xp.xml.XmlException Maven / Gradle / Ivy
package com.enonic.xp.xml;
import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.exception.BaseException;
@PublicApi
public final class XmlException
extends BaseException
{
public XmlException( final Throwable cause )
{
super( cause, cause != null ? cause.getMessage() : null );
}
public XmlException( final String message )
{
super( message );
}
public XmlException( final Throwable t, final String message )
{
super( t, message );
}
@Deprecated
public XmlException( final String message, final Object... args )
{
super( message, args );
}
@Deprecated
public XmlException( final Throwable cause, final String message, final Object... args )
{
super( cause, message, args );
}
}