Return-Path: Delivered-To: apmail-incubator-directory-cvs-archive@www.apache.org Received: (qmail 46605 invoked from network); 11 Jan 2005 04:29:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 11 Jan 2005 04:29:38 -0000 Received: (qmail 30748 invoked by uid 500); 11 Jan 2005 04:29:37 -0000 Delivered-To: apmail-incubator-directory-cvs-archive@incubator.apache.org Received: (qmail 30698 invoked by uid 500); 11 Jan 2005 04:29:37 -0000 Mailing-List: contact directory-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: directory-dev@incubator.apache.org Delivered-To: mailing list directory-cvs@incubator.apache.org Received: (qmail 30684 invoked by uid 99); 11 Jan 2005 04:29:37 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 10 Jan 2005 20:29:37 -0800 Received: (qmail 46576 invoked by uid 65534); 11 Jan 2005 04:29:36 -0000 Date: 11 Jan 2005 04:29:36 -0000 Message-ID: <20050111042936.46572.qmail@minotaur.apache.org> From: vtence@apache.org To: directory-cvs@incubator.apache.org Subject: svn commit: r124875 - in incubator/directory/janus/trunk: core/api/src/java/org/apache/authx script/src/java/org/apache/authx/script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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() {