KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > providers > gs > space > GSSpaceException


1 /*
2  * $Id: GSSpaceException.java 3807 2006-11-06 13:13:36Z holger $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.providers.gs.space;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.umo.space.UMOSpaceException;
15
16 /**
17  * Is thrown when any caught exception is fired in the GSSpace and GSSpaceFactory.
18  *
19  * @see GSSpace
20  * @see GSSpaceFactory
21  */

22 public class GSSpaceException extends UMOSpaceException
23 {
24     /**
25      * Serial version
26      */

27     private static final long serialVersionUID = -3282831931874122222L;
28
29     public GSSpaceException(Throwable JavaDoc cause)
30     {
31         super(Message.createStaticMessage(cause.getMessage()), cause);
32     }
33 }
34
Popular Tags