Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/flexstor/common/services/remote/resourcefork/RsrcForkConnectException.java


1   /*
2    * RsrcForkConnectException.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:37 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.services.remote.resourcefork;
12  
13  /**
14  * Thrown by the DaveForkClient or DaveForkServer when communicating with the remote DaveForkServer
15  */
16  public class RsrcForkConnectException
17     extends Exception
18  {
19     private Throwable t = null;
20     public RsrcForkConnectException( String sMessage )
21     {
22        super( sMessage );
23     }
24     
25     public RsrcForkConnectException( Throwable t )
26     {
27        this.t = t;
28     }
29     
30     public Throwable getOriginalException()
31     {
32        return t;
33     }
34  }