01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: ParameterRegexpGlobalVarConflictException.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine.exceptions;
09:
10: public class ParameterRegexpGlobalVarConflictException extends
11: DeclarationConflictException {
12: private static final long serialVersionUID = 996515132568622989L;
13:
14: private String mSubmissionName = null;
15: private String mGlobalVarName = null;
16:
17: public ParameterRegexpGlobalVarConflictException(
18: String declarationName, String conflictName,
19: String submissionName, String globalVarName) {
20: super ("The regexp parameter '" + conflictName
21: + "' in submission '" + submissionName
22: + "' of element '" + declarationName
23: + "' conflicts with the existing global variable '"
24: + globalVarName + "'.", declarationName, conflictName);
25:
26: mSubmissionName = submissionName;
27: mGlobalVarName = globalVarName;
28: }
29:
30: public String getSubmissionName() {
31: return mSubmissionName;
32: }
33:
34: public String getGlobalVarName() {
35: return mGlobalVarName;
36: }
37: }
|