]> source.dussan.org Git - aspectj.git/commitdiff
231396: refactoring: BetaException type removed
authoraclement <aclement>
Mon, 12 May 2008 16:47:55 +0000 (16:47 +0000)
committeraclement <aclement>
Mon, 12 May 2008 16:47:55 +0000 (16:47 +0000)
weaver/src/org/aspectj/weaver/BetaException.java [deleted file]

diff --git a/weaver/src/org/aspectj/weaver/BetaException.java b/weaver/src/org/aspectj/weaver/BetaException.java
deleted file mode 100644 (file)
index f34b06e..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
- * ******************************************************************/
-
-
-package org.aspectj.weaver;
-
-/**
- * Exception to use inside the bcweaver.
- */
-public class BetaException extends RuntimeException {
-
-    public BetaException() {
-        super();
-    }
-
-    public BetaException(String s) {
-        super(s);
-    }
-
-}