01: /*
02: * The contents of this file are subject to the Mozilla Public License Version
03: * 1.1 (the "License"); you may not use this file except in compliance with the
04: * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
05: *
06: * Software distributed under the License is distributed on an "AS IS" basis,
07: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
08: * the specific language governing rights and limitations under the License.
09: *
10: * The Original Code is "Java Security Component Framework"
11: *
12: * The Initial Developer of the Original Code are Thomas Wabner, alias waffel.
13: * Portions created by Thomas Wabner are Copyright (C) 2004.
14: *
15: * All Rights reserved. Created on 29.07.2004
16: *
17: */
18: package org.columba.mail.pgp;
19:
20: import org.waffel.jscf.JSCFException;
21:
22: /**
23: * This Exception should be used, if the given Programm like /usr/bin/gpg cannot
24: * found or is null. If this Exception is thrown, then we should popup an error
25: * window with a link to the config, where the user can set the path to gpg or
26: * disable the feature.
27: *
28: * @author waffel
29: *
30: */
31: public class ProgramNotFoundException extends JSCFException {
32: /**
33: * Creates a new ProgramNotFoundException and give it the reason in the arg0
34: * variable.
35: *
36: * @param arg0
37: * The reason as a string.
38: */
39: public ProgramNotFoundException(String arg0) {
40: super(arg0);
41: }
42:
43: }
|