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

« back to all changes in this revision

Viewing changes to source/libs/juti/java/com/sun/grid/ca/GridCAException.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.ca;
 
33
 
 
34
import java.text.MessageFormat;
 
35
import java.util.ResourceBundle;
 
36
 
 
37
/**
 
38
 * This exception wraps all errors of the GridCA
 
39
 *
 
40
 */
 
41
public class GridCAException extends Exception {
 
42
 
 
43
    
 
44
    /**
 
45
     * Creates a new instance of CAException
 
46
     * @param message the message
 
47
     */
 
48
    public GridCAException(String message) {
 
49
        super(message);
 
50
    }
 
51
    
 
52
 
 
53
    /**
 
54
     * Creates a new instance of GridCAException.
 
55
     *
 
56
     * @param message the message
 
57
     * @param cause   the cause of the exception
 
58
     */
 
59
    public GridCAException(String message, Throwable cause) {
 
60
        super(message, cause);
 
61
    }
 
62
    
 
63
    /**
 
64
     * Creates a new instance of GridCAException with
 
65
     * a localized message
 
66
     *
 
67
     * @param message the message
 
68
     * @param bundle  the resource bundle
 
69
     */
 
70
    public GridCAException(String message, String bundle) {
 
71
        this(message, bundle, null);
 
72
    }
 
73
    
 
74
    /**
 
75
     * Creates a new instance of GridCAException with
 
76
     * a localized message
 
77
     *
 
78
     * @param message the message
 
79
     * @param bundle  the resource bundle
 
80
     * @param params  parameters for the message
 
81
     */
 
82
    public GridCAException(String message, String bundle, Object [] params) {
 
83
        super(format(message, bundle, params));
 
84
    }
 
85
    
 
86
    /**
 
87
     * Creates a new instance of GridCAException with
 
88
     * a localized message
 
89
     *
 
90
     * @param message the message
 
91
     * @param cause   the cause of the error
 
92
     * @param bundle  the resource bundle
 
93
     * @param params  parameters for the message
 
94
     */
 
95
    public GridCAException(String message, Throwable cause, String bundle, Object [] params) {
 
96
        super(format(message, bundle, params), cause);
 
97
    }
 
98
    
 
99
    private static String format(String message, String bundle, Object [] params) {
 
100
        String msg = ResourceBundle.getBundle(bundle).getString(message);
 
101
        if(params != null) {
 
102
            msg = MessageFormat.format(msg, params);
 
103
        }
 
104
        return msg;
 
105
    }
 
106
    
 
107
}