Most visited

Recently visited

Added in API level 1

BadParcelableException

public class BadParcelableException
extends AndroidRuntimeException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ android.util.AndroidRuntimeException
           ↳ android.os.BadParcelableException


Exception thrown when a Parcelable is malformed or otherwise invalid.

This is typically encountered when a custom Parcelable object is passed to another process that doesn't have the same Parcelable class in its ClassLoader.

Summary

Public constructors

BadParcelableException(String msg)
BadParcelableException(Exception cause)

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

BadParcelableException

Added in API level 1
BadParcelableException (String msg)

Parameters
msg String

BadParcelableException

Added in API level 1
BadParcelableException (Exception cause)

Parameters
cause Exception

Hooray!