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

« back to all changes in this revision

Viewing changes to source/libs/jgdi/src/com/sun/grid/jgdi/JGDIException.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;
 
33
 
 
34
import java.util.MissingResourceException;
 
35
import java.util.ResourceBundle;
 
36
 
 
37
/**
 
38
 * Base exception class for all errors on the GDI layer.
 
39
 */
 
40
public class JGDIException extends java.rmi.RemoteException {
 
41
    private int exitCode;
 
42
    
 
43
    private Object[] params;
 
44
    //private static ResourceBundle RB = ResourceBundle.getBundle("com.sun.grid.jgdi.Resources");
 
45
    
 
46
    /** Creates a new instance of JGDIException */
 
47
    public JGDIException() {
 
48
        this.exitCode = 100;
 
49
    }
 
50
    
 
51
    public JGDIException(String msg) {
 
52
        super(msg);
 
53
        this.exitCode = 100;
 
54
    }
 
55
    
 
56
    public JGDIException(String msg, int exitCode) {
 
57
        super(msg);
 
58
        this.exitCode = exitCode;
 
59
    }
 
60
    
 
61
    public JGDIException(Throwable ex, String msg) {
 
62
        super(msg, ex);
 
63
    }
 
64
    
 
65
    public JGDIException(String msg, Object... params) {
 
66
        super(msg);
 
67
        this.params = params;
 
68
        this.exitCode = 100;
 
69
    }
 
70
    
 
71
    public JGDIException(String msg, int exitCode, Object... params) {
 
72
        super(msg);
 
73
        this.params = params;
 
74
        this.exitCode = exitCode;
 
75
    }
 
76
    
 
77
    public int getExitCode() {
 
78
        return exitCode;
 
79
    }
 
80
//   public String getLocalizedMessage() {
 
81
//
 
82
//      try {
 
83
//         String ret = RB.getString(getMessage());
 
84
//
 
85
//         if (ret != null && params != null) {
 
86
//            ret = java.text.MessageFormat.format(ret,params);
 
87
//         }
 
88
//         return ret;
 
89
//      } catch (MissingResourceException mre) {
 
90
//         return getMessage();
 
91
//      }
 
92
//   }
 
93
}
 
 
b'\\ No newline at end of file'