Author: scolebourne
Date: Sat Jun 25 08:19:34 2005
New Revision: 201754

URL: http://svn.apache.org/viewcvs?rev=201754&view=rev
Log:
Add javadoc

Added:
    
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
   (with props)

Added: 
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java?rev=201754&view=auto
==============================================================================
--- 
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
 (added)
+++ 
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
 Sat Jun 25 08:19:34 2005
@@ -0,0 +1,63 @@
+/*
+ * Copyright 2001-2005 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.commons.io.find;
+
+/**
+ * Exception thrown when an error occurs during the find process.
+ * 
+ * @author Henri Yandell
+ * @version $Id$
+ * @since 1.1
+ */
+public class FinderException extends RuntimeException {
+
+    /**
+     * Constructor.
+     */
+    public FinderException() {
+        super();
+    }
+
+    /**
+     * Constructor taking a descriptive message.
+     * 
+     * @param msg  the message to use
+     */
+    public FinderException(String msg) {
+        super(msg);
+    }
+
+    /**
+     * Constructor taking a throwable.
+     * 
+     * @param th  the throwable to wrap
+     */
+    public FinderException(Throwable th) {
+        super(th);
+    }
+
+    /**
+     * Constructor taking a message and throwable.
+     * 
+     * @param msg  the message to use
+     * @param th  the throwable to wrap
+     */
+    public FinderException(String msg, Throwable th) {
+        super(msg, th);
+    }
+
+}

Propchange: 
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
jakarta/commons/proper/io/branches/finder-reminder/java/org/apache/commons/io/find/FinderException.java
------------------------------------------------------------------------------
    svn:keywords = "author date id revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to