home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / RemoteException.java < prev    next >
Text File  |  1998-09-22  |  1KB  |  55 lines

  1. /*
  2.  * @(#)RemoteException.java    1.5 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.rmi;
  16.  
  17. public class RemoteException extends java.io.IOException {
  18.  
  19.     public Throwable detail;
  20.  
  21.     /**
  22.      * Create a remote exception
  23.      */
  24.     public RemoteException() {}
  25.  
  26.     /**
  27.      * Create a remote exception with the specified string
  28.      */
  29.     public RemoteException(String s) {
  30.     super(s);
  31.     }
  32.  
  33.     /**
  34.      * Create a remote exception with the specified string, and the
  35.      * exception specified.
  36.      */
  37.     public RemoteException(String s, Throwable ex) {
  38.     super(s);
  39.     detail = ex;
  40.     }
  41.  
  42.     /**
  43.      * Produce the message, include the message from the nested
  44.      * exception if there is one.
  45.      */
  46.     public String getMessage() {
  47.     if (detail == null) 
  48.         return super.getMessage();
  49.     else
  50.         return super.getMessage() + 
  51.         "; nested exception is: \n\t" +
  52.         detail.toString();
  53.     }
  54. }
  55.