aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-base/archiva-filelock/src
diff options
context:
space:
mode:
authorOlivier Lamy <olamy@apache.org>2013-12-12 22:37:24 +0000
committerOlivier Lamy <olamy@apache.org>2013-12-12 22:37:24 +0000
commit7fc6fb2158429c575bb8bd59c718c6c28694654e (patch)
tree49d71b0bb80e5a0d17bd23c7c02d8a0d03b2da9c /archiva-modules/archiva-base/archiva-filelock/src
parent3e344bc8278d9e3a2e08a90aa23d5f4b5a3ee696 (diff)
downloadarchiva-7fc6fb2158429c575bb8bd59c718c6c28694654e.tar.gz
archiva-7fc6fb2158429c575bb8bd59c718c6c28694654e.zip
add class
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1550561 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base/archiva-filelock/src')
-rw-r--r--archiva-modules/archiva-base/archiva-filelock/src/main/java/org/apache/archiva/common/filelock/FileLockTimeoutException.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-filelock/src/main/java/org/apache/archiva/common/filelock/FileLockTimeoutException.java b/archiva-modules/archiva-base/archiva-filelock/src/main/java/org/apache/archiva/common/filelock/FileLockTimeoutException.java
new file mode 100644
index 000000000..4e5d7cfd2
--- /dev/null
+++ b/archiva-modules/archiva-base/archiva-filelock/src/main/java/org/apache/archiva/common/filelock/FileLockTimeoutException.java
@@ -0,0 +1,32 @@
+package org.apache.archiva.common.filelock;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.
+ */
+
+/**
+ * @author Olivier Lamy
+ */
+public class FileLockTimeoutException
+ extends Exception
+{
+ public FileLockTimeoutException( )
+ {
+ super( );
+ }
+}