~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to java/src/Ice/LocalException.java

  • Committer: Bazaar Package Importer
  • Author(s): Cleto Martin Angelina
  • Date: 2011-04-25 18:44:24 UTC
  • mfrom: (6.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110425184424-sep9i9euu434vq4c
Tags: 3.4.1-7
* Bug fix: "libdb5.1-java.jar was renamed to db.jar", thanks to Ondřej
  Surý (Closes: #623555).
* Bug fix: "causes noise in php5", thanks to Jayen Ashar (Closes:
  #623533).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
9
9
 
10
10
package Ice;
11
11
 
 
12
/**
 
13
 * Base class for all Ice run-time exceptions.
 
14
 **/
12
15
public abstract class LocalException extends RuntimeException implements Cloneable
13
16
{
 
17
    /**
 
18
     * Creates a copy of this exception.
 
19
     *
 
20
     * @return The copy of this exception.
 
21
     **/
14
22
    public java.lang.Object clone()
15
23
    {
16
24
        java.lang.Object o = null;
25
33
        return o;
26
34
    }
27
35
 
 
36
    /**
 
37
     * Returns the name of this exception.
 
38
     *
 
39
     * @return The name of this exception.
 
40
     **/
28
41
    public abstract String
29
42
    ice_name();
30
43
 
 
44
    /**
 
45
     * Returns a string representation of this exception.
 
46
     *
 
47
     * @return A string representation of this exception.
 
48
     **/
31
49
    public String
32
50
    toString()
33
51
    {