home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / LIB / STACK_TR.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.4 KB  |  47 lines

  1. package sub_arctic.lib;
  2.  
  3. /** 
  4.  * An exception class designed to gather a stack trace for debugging purposes.
  5.  * This is not necessarily thrown because of an, but instead used internally
  6.  * to gather a stack trace for debugging purposes.
  7.  * @author Scott Hudson
  8.  */
  9. public class stack_trace extends sub_arctic_error {
  10.  
  11.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  12.  
  13.   /** Constructor with error message 
  14.    * @param String message the error message associated with the error
  15.    */
  16.   public stack_trace(String message)
  17.     {
  18.       super(message);
  19.     }
  20.  
  21.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  22.  
  23.   /** Default constructor */
  24.   public stack_trace()
  25.     {
  26.       super();
  27.     }
  28.  
  29.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  30. }
  31. /*=========================== COPYRIGHT NOTICE ===========================
  32.  
  33. This file is part of the subArctic user interface toolkit.
  34.  
  35. Copyright (c) 1996 Scott Hudson and Ian Smith
  36. All rights reserved.
  37.  
  38. The subArctic system is freely available for most uses under the terms
  39. and conditions described in 
  40.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  41. and appearing in full in the lib/interactor.java source file.
  42.  
  43. The current release and additional information about this software can be 
  44. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  45.  
  46. ========================================================================*/
  47.