KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > marshall > MarshallingException


1 package org.jboss.cache.marshall;
2
3 /**
4  * Thrown when there is an exception in marshalling.
5  *
6  * @author Ben Wang 8-2005
7  */

8 public class MarshallingException extends Exception JavaDoc
9 {
10
11    private static final long serialVersionUID = -5991339859063633060L;
12
13    public MarshallingException()
14    {
15       super();
16    }
17
18    public MarshallingException(String JavaDoc msg)
19    {
20       super(msg);
21    }
22
23    public MarshallingException(String JavaDoc msg, Throwable JavaDoc cause)
24    {
25       super(msg, cause);
26    }
27 }
28
Popular Tags