Android APIs
public class

NotSerializableException

extends ObjectStreamException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.ObjectStreamException
           ↳ java.io.NotSerializableException

Class Overview

Signals that an object that is not serializable has been passed into the ObjectOutput.writeObject() method. This can happen if the object does not implement Serializable or Externalizable, or if it is serializable but it overrides writeObject(ObjectOutputStream) and explicitly prevents serialization by throwing this type of exception.

Summary

Public Constructors
NotSerializableException()
Constructs a new NotSerializableException with its stack trace filled in.
NotSerializableException(String detailMessage)
Constructs a new NotSerializableException with its stack trace and detail message filled in.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public NotSerializableException ()

Added in API level 1

Constructs a new NotSerializableException with its stack trace filled in.

public NotSerializableException (String detailMessage)

Added in API level 1

Constructs a new NotSerializableException with its stack trace and detail message filled in.

Parameters
detailMessage the detail message for this exception.