software.amazon.awssdk.eventstreamrpc.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-iot-device-sdk Show documentation
Show all versions of aws-iot-device-sdk Show documentation
Java bindings for the AWS IoT Core Service
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
/* This file is part of greengrass-ipc project. */
package software.amazon.awssdk.eventstreamrpc;
/**
* Thrown when a serialization exception occurs
*/
public class SerializationException extends RuntimeException {
/**
* Creates a new serlization exception
* @param object The object that caused the serlization exception
*/
public SerializationException(Object object) {
this(object, null);
}
/**
* Creates a new serlization exception
* @param object The object that caused the serlization exception
* @param cause The cause of the serlization exception
*/
public SerializationException(Object object, Throwable cause) {
super("Could not serialize object: " + object.toString(), cause);
}
}