rt/emul/mini/src/main/java/java/lang/UnsupportedOperationException.java
author Lubomir Nerad <lubomir.nerad@oracle.com>
Mon, 15 Apr 2013 15:30:53 +0200
branchclosure
changeset 988 c2386b2f53d0
parent 772 rt/emul/mini/src/main/java/java/lang/annotation/UnsupportedOperationException.java@d382dacfd73f
permissions -rw-r--r--
Fixed static calculator full obfuscation after introduction o Exported annotation
jaroslav@66
     1
/*
jaroslav@66
     2
 * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
jaroslav@66
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@66
     4
 *
jaroslav@66
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@66
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@66
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@66
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@66
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@66
    10
 *
jaroslav@66
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@66
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@66
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@66
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@66
    15
 * accompanied this code).
jaroslav@66
    16
 *
jaroslav@66
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@66
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@66
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@66
    20
 *
jaroslav@66
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@66
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@66
    23
 * questions.
jaroslav@66
    24
 */
jaroslav@66
    25
jaroslav@66
    26
package java.lang;
jaroslav@66
    27
jaroslav@66
    28
/**
jaroslav@66
    29
 * Thrown to indicate that the requested operation is not supported.<p>
jaroslav@66
    30
 *
jaroslav@66
    31
 * This class is a member of the
jaroslav@66
    32
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
jaroslav@66
    33
 * Java Collections Framework</a>.
jaroslav@66
    34
 *
jaroslav@66
    35
 * @author  Josh Bloch
jaroslav@66
    36
 * @since   1.2
jaroslav@66
    37
 */
jaroslav@66
    38
public class UnsupportedOperationException extends RuntimeException {
jaroslav@66
    39
    /**
jaroslav@66
    40
     * Constructs an UnsupportedOperationException with no detail message.
jaroslav@66
    41
     */
jaroslav@66
    42
    public UnsupportedOperationException() {
jaroslav@66
    43
    }
jaroslav@66
    44
jaroslav@66
    45
    /**
jaroslav@66
    46
     * Constructs an UnsupportedOperationException with the specified
jaroslav@66
    47
     * detail message.
jaroslav@66
    48
     *
jaroslav@66
    49
     * @param message the detail message
jaroslav@66
    50
     */
jaroslav@66
    51
    public UnsupportedOperationException(String message) {
jaroslav@66
    52
        super(message);
jaroslav@66
    53
    }
jaroslav@66
    54
jaroslav@66
    55
    /**
jaroslav@66
    56
     * Constructs a new exception with the specified detail message and
jaroslav@66
    57
     * cause.
jaroslav@66
    58
     *
jaroslav@66
    59
     * <p>Note that the detail message associated with <code>cause</code> is
jaroslav@66
    60
     * <i>not</i> automatically incorporated in this exception's detail
jaroslav@66
    61
     * message.
jaroslav@66
    62
     *
jaroslav@66
    63
     * @param  message the detail message (which is saved for later retrieval
jaroslav@66
    64
     *         by the {@link Throwable#getMessage()} method).
jaroslav@66
    65
     * @param  cause the cause (which is saved for later retrieval by the
jaroslav@66
    66
     *         {@link Throwable#getCause()} method).  (A <tt>null</tt> value
jaroslav@66
    67
     *         is permitted, and indicates that the cause is nonexistent or
jaroslav@66
    68
     *         unknown.)
jaroslav@66
    69
     * @since 1.5
jaroslav@66
    70
     */
jaroslav@66
    71
    public UnsupportedOperationException(String message, Throwable cause) {
jaroslav@66
    72
        super(message, cause);
jaroslav@66
    73
    }
jaroslav@66
    74
jaroslav@66
    75
    /**
jaroslav@66
    76
     * Constructs a new exception with the specified cause and a detail
jaroslav@66
    77
     * message of <tt>(cause==null ? null : cause.toString())</tt> (which
jaroslav@66
    78
     * typically contains the class and detail message of <tt>cause</tt>).
jaroslav@66
    79
     * This constructor is useful for exceptions that are little more than
jaroslav@66
    80
     * wrappers for other throwables (for example, {@link
jaroslav@66
    81
     * java.security.PrivilegedActionException}).
jaroslav@66
    82
     *
jaroslav@66
    83
     * @param  cause the cause (which is saved for later retrieval by the
jaroslav@66
    84
     *         {@link Throwable#getCause()} method).  (A <tt>null</tt> value is
jaroslav@66
    85
     *         permitted, and indicates that the cause is nonexistent or
jaroslav@66
    86
     *         unknown.)
jaroslav@66
    87
     * @since  1.5
jaroslav@66
    88
     */
jaroslav@66
    89
    public UnsupportedOperationException(Throwable cause) {
jaroslav@66
    90
        super(cause);
jaroslav@66
    91
    }
jaroslav@66
    92
jaroslav@66
    93
    static final long serialVersionUID = -1242599979055084673L;
jaroslav@66
    94
}