
org.sapia.util.xml.idefix.SerializerNotFoundException Maven / Gradle / Ivy
The newest version!
package org.sapia.util.xml.idefix;
// Import of Sapia's utility classes
// ---------------------------------
import org.sapia.util.CompositeException;
/**
* Thrown when a serializer facotry could not create a serializer for a given type.
*
* @author Jean-Cedric Desrochers
*
* - Copyright:
- Copyright © 2002-2003 Sapia Open Source Software. All Rights Reserved.
* - License:
- Read the license.txt file of the jar or visit the
* license page at the Sapia OSS web site
*
*/
public class SerializerNotFoundException extends CompositeException {
/**
* Creates a new SerializerNotFoundException instance with the arguments passed in.
*
* @param aMessage The message describing the error.
* @param aSourceError The source error to encapsulate.
*/
public SerializerNotFoundException(String aMessage, Throwable aSourceError) {
super(aMessage, aSourceError);
}
/**
* Creates a new SerializerNotFoundException instance with the argument passed in.
*
* @param aMessage The message describing the error.
*/
public SerializerNotFoundException(String aMessage) {
super(aMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy