CustomDeserializationFailed constructor

CustomDeserializationFailed(
  1. Type objectType,
  2. dynamic innerException
)

Implementation

CustomDeserializationFailed(Type objectType, this.innerException)
    : super(
          'An exception of type ${innerException.runtimeType.toString()} was thrown when trying to deserialize an Object of Type ${objectType.toString()}\n'
          'Inner ${innerException.toString()}');