01: //The contents of this file are subject to the Mozilla Public License Version 1.1
02: //(the "License"); you may not use this file except in compliance with the
03: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
04: //
05: //Software distributed under the License is distributed on an "AS IS" basis,
06: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
07: //for the specific language governing rights and
08: //limitations under the License.
09: //
10: //The Original Code is "The Columba Project"
11: //
12: //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14: //
15: //All Rights Reserved.
16: package org.columba.mail.folder;
17:
18: /**
19: * Folders throw this exception if they find themselves in
20: * a non-consistent state.
21: * <p>
22: * Goal is to make it possible to start an automatic recreation
23: * of the header cache, etc. to fix the folder consistency.
24: *
25: * @author fdietz
26: */
27:
28: public class FolderInconsistentException extends Exception {
29: /**
30: * Constructs the FolderInconsistentException.java.
31: *
32: *
33: */
34: public FolderInconsistentException() {
35: super ();
36: }
37:
38: /**
39: * Constructs the FolderInconsistentException.java.
40: *
41: * @param arg0
42: */
43: public FolderInconsistentException(String arg0) {
44: super (arg0);
45: }
46:
47: /**
48: * Constructs the FolderInconsistentException.java.
49: *
50: * @param arg0
51: * @param arg1
52: */
53: public FolderInconsistentException(String arg0, Throwable arg1) {
54: super (arg0, arg1);
55: }
56:
57: /**
58: * Constructs the FolderInconsistentException.java.
59: *
60: * @param arg0
61: */
62: public FolderInconsistentException(Throwable arg0) {
63: super(arg0);
64: }
65: }
|