FileDocCategorySizeDatePackage
InvalidValueTypeException.javaAPI DocAndroid 1.5 API2814Wed May 06 22:41:08 BST 2009com.android.ddmlib.log

InvalidValueTypeException

public final class InvalidValueTypeException extends Exception
Exception thrown when associating an {@link EventValueType} with an incompatible {@link ValueType}.

Fields Summary
private static final long
serialVersionUID
Needed by {@link Serializable}.
Constructors Summary
public InvalidValueTypeException()
Constructs a new exception with the default detail message.

see
java.lang.Exception


                    
      
        super("Invalid Type");
    
public InvalidValueTypeException(String message)
Constructs a new exception with the specified detail message.

param
message the detail message. The detail message is saved for later retrieval by the {@link Throwable#getMessage()} method.
see
java.lang.Exception

        super(message);
    
public InvalidValueTypeException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

param
cause the cause (which is saved for later retrieval by the {@link Throwable#getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
see
java.lang.Exception

        super(cause);
    
public InvalidValueTypeException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.

param
message the detail message. The detail message is saved for later retrieval by the {@link Throwable#getMessage()} method.
param
cause the cause (which is saved for later retrieval by the {@link Throwable#getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
see
java.lang.Exception

        super(message, cause);
    
Methods Summary