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: ParameterRegexpGlobalCookieConflictException.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine.exceptions;
09:
10: public class ParameterRegexpGlobalCookieConflictException extends
11: DeclarationConflictException {
12: private static final long serialVersionUID = -7627218931202992482L;
13:
14: private String mSubmissionName = null;
15: private String mGlobalCookieName = null;
16:
17: public ParameterRegexpGlobalCookieConflictException(
18: String declarationName, String conflictName,
19: String submissionName, String globalCookieName) {
20: super ("The regexp parameter '" + conflictName
21: + "' in submission '" + submissionName
22: + "' of element '" + declarationName
23: + "' conflicts with the existing global cookie '"
24: + globalCookieName + "'.", declarationName,
25: conflictName);
26:
27: mSubmissionName = submissionName;
28: mGlobalCookieName = globalCookieName;
29: }
30:
31: public String getSubmissionName() {
32: return mSubmissionName;
33: }
34:
35: public String getGlobalCookieName() {
36: return mGlobalCookieName;
37: }
38: }
|