svn commit: rev 36078 - avalon/trunk/planet/facilities/console/impl/src/main/org/apache/avalon/facilities/console/impl
[email protected] 8 Aug 2004 06:30:46 -0000
| Newsgroups | gmane.comp.jakarta.avalon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: niclas
Date: Sat Aug 7 23:30:45 2004
New Revision: 36078
Added:
avalon/trunk/planet/facilities/console/impl/src/main/org/apache/avalon/facilities/console/impl/DeniedHostException.java (contents, props changed)
Log:
Touching up some minor details, and adding allow/deny semantics into ConsoleImpl.
Added: avalon/trunk/planet/facilities/console/impl/src/main/org/apache/avalon/facilities/console/impl/DeniedHostException.java
==============================================================================
--- (empty file)
+++ avalon/trunk/planet/facilities/console/impl/src/main/org/apache/avalon/facilities/console/impl/DeniedHostException.java Sat Aug 7 23:30:45 2004
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2004 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.avalon.facilities.console.impl;
+
+
+public class DeniedHostException extends Exception
+{
+ public DeniedHostException( String message )
+ {
+ super( message );
+ }
+}
+