01: /*
02: * Copyright 2001-2006 C:1 Financial Services GmbH
03: *
04: * This software is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License Version 2.1, as published by the Free Software Foundation.
07: *
08: * This software is distributed in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11: * Lesser General Public License for more details.
12: *
13: * You should have received a copy of the GNU Lesser General Public
14: * License along with this library; if not, write to the Free Software
15: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
16: */
17:
18: package de.finix.contelligent.exception;
19:
20: import java.util.Map;
21:
22: import de.finix.contelligent.ComponentPath;
23:
24: /**
25: * Basic exception class for signaling errors concerning relations, for example
26: * if a component should be deleted and other components having relations to
27: * this component.
28: *
29: * @see RelationExistsException
30: * @see WouldCreateDeadRelationsException
31: */
32: public class RelationsException extends ContelligentException {
33: /**
34: * Creates a new <code>RelationExistsException</code> instance.
35: *
36: * @param componentPath
37: * the path of the component were relations exist to
38: * @param relationsMap
39: * a map containing (GlobalComponentPath, String) entries as
40: * returned by
41: * {@link de.finix.contelligent.core.RelationsManagerImpl#getGlobalPathsRelatedToTree}.
42: */
43: public RelationsException(ComponentPath componentPath,
44: Map relationsMap) {
45: super (ContelligentExceptionID.relation_generic, new Object[] {
46: componentPath.toPath(), relationsMap });
47: }
48:
49: public RelationsException(String errorId,
50: ComponentPath componentPath, Map relationsMap) {
51: super (errorId, new Object[] { componentPath.toPath(),
52: relationsMap });
53: }
54:
55: public Map getRelationsMap() {
56: return (Map) getInfo()[1];
57: }
58: }
|