1 /* $Id$ 2 * 3 * Copyright (c) 1999 Xenonsoft Limited. All Rights Reserved. 4 * 5 * This software is protected by copyright. You are hereby notified from 6 * now by reading this message. This software is also the confidential 7 * and proprietary information of Xenonsoft Limited. ("Confidential 8 * Information"). 9 * 10 * This software is distributed under the Xenonsoft Public end user 11 * License ("XPeL"), where the machine-readable source code is provided 12 * under the "Open Source" model. 13 * For more information, please read the file "LICENSE-XPL.txt" 14 */ 15 16 // 17 // DESCRIPTION 18 // 19 // Peter Pilgrim 20 // Sun Jan 17 19:28:41 GMT 1999 21 // 22 // RCS HEADER ``InstallException.java'' 23 // 24 // $Author$ 25 // $Date$ 26 // $Source$ 27 // $Revision$ $State$ $Locker$ 28 // 29 30 package ixenon.free.nodes; 31 32 /** 33 * An install exception object 34 */ 35 public class InstallException extends Exception { 36 37 InstallException( String message ) 38 { 39 super(message); 40 } 41 } 42 43 44 // fini 45