42 lines
1.0 KiB
Java
42 lines
1.0 KiB
Java
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 1994,1995 Southeastern Universities Research Association,
|
|
// Continuous Electron Beam Accelerator Facility
|
|
//
|
|
// This software was developed under a United States Government license
|
|
// described in the NOTICE file included as part of this distribution.
|
|
//
|
|
// Jefferson Lab HPC Group, 12000 Jefferson Ave., Newport News, VA 23606
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Description:
|
|
// Simple RSVC Package Exception Class
|
|
//
|
|
// Author:
|
|
// Jie Chen
|
|
// Jefferson Lab HPC Group
|
|
//
|
|
// Revision History:
|
|
// $Log: rsvcException.java,v $
|
|
// Revision 1.1.1.1 2000/05/23 15:12:50 pal
|
|
// cdev_psi_1.7.2
|
|
//
|
|
// Revision 1.1 1999/10/18 17:12:43 chen
|
|
// *** empty log message ***
|
|
//
|
|
//
|
|
//
|
|
public class rsvcException extends RuntimeException
|
|
{
|
|
rsvcException ()
|
|
{
|
|
super ();
|
|
}
|
|
|
|
rsvcException (String s)
|
|
{
|
|
super (s);
|
|
}
|
|
}
|
|
|
|
|