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

msv.tahiti.src.com.sun.tahiti.runtime.sm.MarshallingException Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
/*
 * @(#)$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