msv.tahiti.src.com.sun.tahiti.runtime.ll.UnmarshallingException Maven / Gradle / Ivy
/*
* @(#)$Id: UnmarshallingException.java 923 2001-07-20 20:45:03Z Bear $
*
* Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package com.sun.tahiti.runtime.ll;
/**
* signals an error encountered during the unmarshalling.
*
* @author
* Kohsuke KAWAGUCHI
*/
public class UnmarshallingException extends org.xml.sax.SAXException {
public UnmarshallingException( Exception e ) {
super(e);
}
public UnmarshallingException( String msg ) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy