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