summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-06-13 11:45:42 +0000
committerRüdiger Timm <rt@openoffice.org>2008-06-13 11:45:42 +0000
commitbae3824dd7ae034c9aea209ae1f49b91a03c7b8b (patch)
treeb7a619deb0d90b562c609f3d9e5e343cc93eab3a /qadevOOo/runner
parent374fbe7575f8d6e596a5cb9449f78801d0bae858 (diff)
INTEGRATION: CWS qadev32 (1.1.2); FILE ADDED
2008/06/13 08:33:07 rt 1.1.2.3: Correct license header 2008/05/13 19:06:30 cn 1.1.2.2: #i87389# enhance javadoc 2008/01/22 11:44:38 cn 1.1.2.1: #i85370#: This exception should be thrown if you try to get a Null value of a parameter and you don't can handle it directly
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/helper/ParameterNotFoundException.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/qadevOOo/runner/helper/ParameterNotFoundException.java b/qadevOOo/runner/helper/ParameterNotFoundException.java
new file mode 100644
index 000000000000..1eb4cf35f7f2
--- /dev/null
+++ b/qadevOOo/runner/helper/ParameterNotFoundException.java
@@ -0,0 +1,43 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: ParameterNotFoundException.java,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+package helper;
+
+/**
+ * This exception is thrown when a parameter could not be found.
+ *
+ */
+public class ParameterNotFoundException extends Exception {
+ public ParameterNotFoundException(String message){
+ super (message);
+ }
+
+}