All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.iot.client.AWSIotException Maven / Gradle / Ivy

There is a newer version: 1.3.13
Show newest version
// Generated by delombok at Wed Apr 27 22:20:37 UTC 2022
/*
 * Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
package com.amazonaws.services.iot.client;

/**
 * This is a generic exception that can be thrown in most of the APIs, blocking
 * and non-blocking, by the library.
 */
public class AWSIotException extends Exception {
    /**
     * The Constant serialVersionUID.
     */
    private static final long serialVersionUID = 1L;
    /**
     * Error code for shadow methods. It's only applicable to exceptions thrown
     * by those shadow method APIs.
     */
    private AWSIotDeviceErrorCode errorCode;

    /**
     * Instantiates a new exception object.
     *
     * @param message
     *            the error message
     */
    public AWSIotException(String message) {
        super(message);
    }

    /**
     * Instantiates a new exception object.
     *
     * @param errorCode
     *            the error code
     * @param message
     *            the error message
     */
    public AWSIotException(AWSIotDeviceErrorCode errorCode, String message) {
        super(message);
        this.errorCode = errorCode;
    }

    /**
     * Instantiates a new exception object.
     *
     * @param cause
     *            the cause. A null value is permitted, and indicates that the
     *            cause is nonexistent or unknown.
     */
    public AWSIotException(Throwable cause) {
        super(cause);
    }

    /**
     * Error code for shadow methods. It's only applicable to exceptions thrown
     * by those shadow method APIs.
     *
     * @return the error code of the shadow method exception
     */
    @java.lang.SuppressWarnings("all")
    public AWSIotDeviceErrorCode getErrorCode() {
        return this.errorCode;
    }

    /**
     * Error code for shadow methods. It's only applicable to exceptions thrown
     * by those shadow method APIs.
     *
     * @param errorCode the new error code for the shadow method exception
     */
    @java.lang.SuppressWarnings("all")
    public void setErrorCode(final AWSIotDeviceErrorCode errorCode) {
        this.errorCode = errorCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy