1 // 2 // This file is part of the prose package. 3 // 4 // The contents of this file are subject to the Mozilla Public License 5 // Version 1.1 (the "License"); you may not use this file except in 6 // compliance with the License. You may obtain a copy of the License at 7 // http://www.mozilla.org/MPL/ 8 // 9 // Software distributed under the License is distributed on an "AS IS" basis, 10 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 11 // for the specific language governing rights and limitations under the 12 // License. 13 // 14 // The Original Code is prose. 15 // 16 // The Initial Developer of the Original Code is Andrei Popovici. Portions 17 // created by Andrei Popovici are Copyright (C) 2002 Andrei Popovici. 18 // All Rights Reserved. 19 // 20 // Contributor(s): 21 // $Id: AspectManagerException.java,v 1.1.1.1 2003/07/02 15:30:50 apopovic Exp $ 22 // ===================================================================== 23 // 24 // (history at end) 25 // 26 27 28 package ch.ethz.prose; 29 30 31 /** 32 * Exception class AspectManagerException signals that an extension 33 * manager does not support the insertion or withdrawal of a given extension. 34 * 35 * <p> 36 * 37 * An extension manager is a remote extension. This may be used by concrete 38 * implementations of the <code>AspectManager</code> interface. 39 * 40 * @version $Revision: 1.1.1.1 $ 41 * @author Andrei Popovici 42 */ 43 public 44 class AspectManagerException extends RuntimeException { 45 46 /** 47 * Constructs an <code>AspectManagerException</code> with no detail message. 48 */ 49 public AspectManagerException() 50 { 51 super(); 52 } 53 54 /** 55 * Constructs an <code>AspectManagerException</code> with the specified 56 * detail message. 57 */ 58 public AspectManagerException(String s) 59 { 60 super(s); 61 } 62 63 } 64 65 66 //====================================================================== 67 // 68 // $Log: AspectManagerException.java,v $ 69 // Revision 1.1.1.1 2003/07/02 15:30:50 apopovic 70 // Imported from ETH Zurich 71 // 72 // Revision 1.1 2003/05/05 13:58:33 popovici 73 // renaming from runes to prose 74 // 75 // Revision 1.1 2003/04/17 15:15:10 popovici 76 // Extension->Aspect renaming 77 // 78 // Revision 1.4 2003/03/04 18:36:37 popovici 79 // Organization of imprts 80 // 81 // Revision 1.3 2003/03/04 11:27:13 popovici 82 // Important refactorization step (march): 83 // - removal of 'JoinPointEvents'; JoinPoints now have the same function as events 84 // - reimplementation of the JVMAIDebuggerAspectInterface (better performance, coding conventions, removal of ProseVM 85 // structures 86 // 87 // Revision 1.2 2002/03/28 13:48:34 popovici 88 // Mozilla-ified 89 // 90 // Revision 1.1.1.1 2001/11/29 18:13:15 popovici 91 // Sources from runes 92 // 93 // Revision 1.1.2.1 2001/02/07 11:49:05 popovici 94 // Initial Revision 95 // 96