~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/src/com/sun/grid/jgdi/configuration/reflect/InvalidObjectException.java

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 *
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 *
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 *
 
9
 *
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 *
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 *
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 *
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 *
 
28
 *   All Rights Reserved.
 
29
 *
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
package com.sun.grid.jgdi.configuration.reflect;
 
33
 
 
34
import java.util.Collections;
 
35
import java.util.HashMap;
 
36
import java.util.Map;
 
37
import java.util.Set;
 
38
 
 
39
/**
 
40
 *
 
41
 */
 
42
public class InvalidObjectException extends java.lang.Exception {
 
43
    
 
44
    private Object obj;
 
45
    private Map<String, String> propertyErrorMap;
 
46
    
 
47
    /**
 
48
     * Creates a new instance of <code>InvalidObjectException</code> without detail message.
 
49
     */
 
50
    public InvalidObjectException(Object obj) {
 
51
        this.obj = obj;
 
52
    }
 
53
    
 
54
    /**
 
55
     * Constructs an instance of <code>InvalidObjectException</code> with the specified detail message.
 
56
     * @param msg the detail message.
 
57
     */
 
58
    public InvalidObjectException(Object obj, String msg) {
 
59
        super(msg);
 
60
    }
 
61
    
 
62
    
 
63
    public void addPropertyError(String propertyName, String error) {
 
64
        if (propertyErrorMap == null) {
 
65
            propertyErrorMap = new HashMap<String, String>();
 
66
        }
 
67
        propertyErrorMap.put(propertyName, error);
 
68
    }
 
69
    
 
70
    public Set getInvalidProperties() {
 
71
        if (propertyErrorMap == null) {
 
72
            return Collections.EMPTY_SET;
 
73
        } else {
 
74
            return Collections.unmodifiableSet(propertyErrorMap.keySet());
 
75
        }
 
76
    }
 
77
    
 
78
    public String getPropertyError(String propertyName) {
 
79
        return propertyErrorMap.get(propertyName);
 
80
    }
 
81
    
 
82
    public String toString() {
 
83
        StringBuilder ret = new StringBuilder();
 
84
        ret.append(getMessage());
 
85
        if (propertyErrorMap != null) {
 
86
            boolean first = true;
 
87
            ret.append('[');
 
88
            for (Map.Entry<String, String> entry: propertyErrorMap.entrySet()) {
 
89
                ret.append(entry.getKey());
 
90
                ret.append(": ");
 
91
                ret.append(entry.getValue());
 
92
                if (first) {
 
93
                    first = false;
 
94
                } else {
 
95
                    ret.append(", ");
 
96
                }
 
97
            }
 
98
            ret.append(']');
 
99
        }
 
100
        return ret.toString();
 
101
    }
 
102
}