public class java.lang
ClassCastException


Show All Login
Java SE 6
  
Extends: Throwable > Exception > RuntimeException
Details
Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance. For example, the following code generates a ClassCastException:

     Object x = new Integer(0);
     System.out.println((String)x);
 
version1.21, 11/17/05
sinceJDK1.0

Constructors
public ClassCastException()
Constructs a ClassCastException with no detail message.
public ClassCastException(String s) Details
Constructs a ClassCastException with the specified detail message.
sthe detail message.