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

com.enonic.xp.xml.XmlException Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
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 );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy