Author: vtence Date: Mon Jan 10 20:29:34 2005 New Revision: 124875 URL: http://svn.apache.org/viewcvs?view=rev&rev=124875 Log: Change package Janus name to Authx (authx for package and artifact names) Added: incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/AuthXException.java Removed: incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/JanusException.java Modified: incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java
Added: incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/AuthXException.java Url: http://svn.apache.org/viewcvs/incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/AuthXException.java?view=auto&rev=124875 ============================================================================== --- (empty file) +++ incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/AuthXException.java Mon Jan 10 20:29:34 2005 @@ -0,0 +1,39 @@ +/* + * Copyright 2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +package org.apache.authx; + +public abstract class AuthXException extends RuntimeException +{ + protected AuthXException() + { + } + + protected AuthXException( String message ) + { + super( message ); + } + + protected AuthXException( Throwable cause ) + { + super( cause ); + } + + protected AuthXException( String message, Throwable cause ) + { + super( message, cause ); + } +} Deleted: /incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/JanusException.java Url: http://svn.apache.org/viewcvs/incubator/directory/janus/trunk/core/api/src/java/org/apache/authx/JanusException.java?view=auto&rev=124874 ============================================================================== Modified: incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java Url: http://svn.apache.org/viewcvs/incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java?view=diff&rev=124875&p1=incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java&r1=124874&p2=incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java&r2=124875 ============================================================================== --- incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java (original) +++ incubator/directory/janus/trunk/script/src/java/org/apache/authx/script/ScriptingException.java Mon Jan 10 20:29:34 2005 @@ -16,9 +16,9 @@ */ package org.apache.authx.script; -import org.apache.authx.JanusException; +import org.apache.authx.AuthXException; -public class ScriptingException extends JanusException +public class ScriptingException extends AuthXException { public ScriptingException() {
