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

com.deltaxml.core.DXPConfigurationException Maven / Gradle / Ivy

The newest version!
package com.deltaxml.core;

/**
 * Indicates an error condition in the {@link DXPConfiguration}.
 *
 * 

* This class is the super-class of most of the checked exceptions * thrown by the {@link DXPConfiguration} methods. As such it could be used for * simplified, coarse-grain catch or throws clauses.

* * @see * Class DXPConfigurationException */ public class DXPConfigurationException extends DeltaXMLException { public DXPConfigurationException(String message) { super(message); throw new UnsupportedOperationException(); } public DXPConfigurationException(Throwable t) { super(t); throw new UnsupportedOperationException(); } public DXPConfigurationException(String message, Throwable t) { super(message, t); throw new UnsupportedOperationException(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy