
org.objectweb.jonas_domain.api.DomainMapException Maven / Gradle / Ivy
The newest version!
/**
* JOnAS: Java(TM) Open Application Server
* Copyright (C) 1999 Bull S.A.
* Contact: [email protected]
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* Initial developer(s): Florent BENOIT & Ludovic BERT
* --------------------------------------------------------------------------
* $Id: DomainMapException.java 7757 2005-12-08 15:24:55Z danesa $
* --------------------------------------------------------------------------
*/
package org.objectweb.jonas_domain.api;
import org.objectweb.jonas_lib.deployment.api.DeploymentDescException;
/**
* The class EarDeploymentDescException indicates conditions
* that a reasonable application might want to catch.
* @author Florent Benoit
* @author Ludovic Bert
*/
public class DomainMapException extends DeploymentDescException {
/**
* Constructs a new DomainMapException with no detail
* message.
*/
public DomainMapException() {
super();
}
/**
* Constructs a new DomainMapException with the specified
* message.
* @param message the detail message.
*/
public DomainMapException(String message) {
super(message);
}
/**
* Constructs a new DomainMapException with the specified
* error cause.
* @param cause the cause of the error.
*/
public DomainMapException(Throwable cause) {
super(cause);
}
/**
* Constructs a new DomainMapException with the specified
* error cause.
* @param message the detail message.
* @param cause the cause of the error.
*/
public DomainMapException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy