2011-01-17 22:31:41 +01:00
|
|
|
/**
|
2012-09-19 20:19:12 -05:00
|
|
|
* Copyright 2010 Ryszard Wiśniewski <brut.alll@gmail.com>
|
2011-01-17 22:31:41 +01:00
|
|
|
*
|
2010-03-12 12:47:56 +01:00
|
|
|
* 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
|
2011-01-17 22:31:41 +01:00
|
|
|
*
|
2010-03-12 12:47:56 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-17 22:31:41 +01:00
|
|
|
*
|
2010-03-12 12:47:56 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
package brut.directory;
|
2010-03-12 12:47:56 +01:00
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
public class PathNotExist extends DirectoryException {
|
|
|
|
public PathNotExist() {
|
|
|
|
super();
|
2010-03-12 12:47:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
public PathNotExist(String detailMessage, Throwable throwable) {
|
|
|
|
super(detailMessage, throwable);
|
2010-03-12 12:47:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
public PathNotExist(String detailMessage) {
|
|
|
|
super(detailMessage);
|
2010-03-12 12:47:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
public PathNotExist(Throwable throwable) {
|
|
|
|
super(throwable);
|
2010-03-12 12:47:56 +01:00
|
|
|
}
|
2012-09-19 20:19:12 -05:00
|
|
|
|
|
|
|
private static final long serialVersionUID = -6949242015506342032L;
|
2010-03-12 12:47:56 +01:00
|
|
|
}
|