NotSerializableObjectException class
class NotSerializableObjectException implements Exception {
 final String message;
 const NotSerializableObjectException([this.message = ""]);
 String toString() => "NotSerializableObjectException: $message";
}
Implements
Constructors
const NotSerializableObjectException([String message = ""]) #
Properties
final String message #
final String message
Methods
String toString() #
Returns a string representation of this object.
docs inherited from Object 
String toString() => "NotSerializableObjectException: $message";