rt/emul/mini/src/main/java/java/lang/ClassCastException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 554 emul/mini/src/main/java/java/lang/ClassCastException.java@05224402145d
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
jaroslav@68
     1
/*
jaroslav@68
     2
 * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved.
jaroslav@68
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@68
     4
 *
jaroslav@68
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@68
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@68
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@68
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@68
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@68
    10
 *
jaroslav@68
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@68
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@68
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@68
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@68
    15
 * accompanied this code).
jaroslav@68
    16
 *
jaroslav@68
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@68
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@68
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@68
    20
 *
jaroslav@68
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@68
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@68
    23
 * questions.
jaroslav@68
    24
 */
jaroslav@68
    25
jaroslav@68
    26
package java.lang;
jaroslav@68
    27
jaroslav@68
    28
/**
jaroslav@68
    29
 * Thrown to indicate that the code has attempted to cast an object
jaroslav@68
    30
 * to a subclass of which it is not an instance. For example, the
jaroslav@68
    31
 * following code generates a <code>ClassCastException</code>:
jaroslav@68
    32
 * <p><blockquote><pre>
jaroslav@68
    33
 *     Object x = new Integer(0);
jaroslav@68
    34
 *     System.out.println((String)x);
jaroslav@68
    35
 * </pre></blockquote>
jaroslav@68
    36
 *
jaroslav@68
    37
 * @author  unascribed
jaroslav@68
    38
 * @since   JDK1.0
jaroslav@68
    39
 */
jaroslav@68
    40
public
jaroslav@68
    41
class ClassCastException extends RuntimeException {
jaroslav@68
    42
    private static final long serialVersionUID = -9223365651070458532L;
jaroslav@68
    43
jaroslav@68
    44
    /**
jaroslav@68
    45
     * Constructs a <code>ClassCastException</code> with no detail message.
jaroslav@68
    46
     */
jaroslav@68
    47
    public ClassCastException() {
jaroslav@68
    48
        super();
jaroslav@68
    49
    }
jaroslav@68
    50
jaroslav@68
    51
    /**
jaroslav@68
    52
     * Constructs a <code>ClassCastException</code> with the specified
jaroslav@68
    53
     * detail message.
jaroslav@68
    54
     *
jaroslav@68
    55
     * @param   s   the detail message.
jaroslav@68
    56
     */
jaroslav@68
    57
    public ClassCastException(String s) {
jaroslav@68
    58
        super(s);
jaroslav@68
    59
    }
jaroslav@68
    60
}