msv.tahiti.src.com.sun.tahiti.runtime.sm.MarshallingException Maven / Gradle / Ivy
/*
* @(#)$Id: MarshallingException.java 931 2001-07-21 02:40:02Z 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.sm;
/**
* signals an error encountered during the marshalling.
*
* @author
* Kohsuke KAWAGUCHI
*/
public class MarshallingException extends Exception {
public MarshallingException( String msg, Exception nestedException ) {
super(msg);
this.nestedException = nestedException;
}
private Exception nestedException;
public Exception getNestedException() {
return nestedException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy