The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Insights Hub and Industrial IoT

Insights Hub drives smart manufacturing through the industrial Internet of Things. Gain actionable insights with asset and operational data and improve your processes.

Industrial IoT SDK V2 for Java - Exception Handling¶

Info

Exception handling in the Industrial IoT SDK V2 for Java is identical to the one of V1.

Understanding how and when the Industrial IoT SDK V2 for Java throws exceptions is important to build high-quality applications using the SDK. The following sections describe the different scenarios in which exceptions are thrown by the SDK and how to handle them appropriately.

MindsphereException¶

MindsphereException is the most common exception that you'll experience when using the Industrial IoT SDK for Java. This exception represents an error response from an Industrial IoT service.

MindsphereException provides you with information such as:

  • Returned HTTP status
  • Returned HTTP status Code
  • Detailed error message from the service
  • Reference to the occurred error

Structure of MindsphereException¶

NameDescriptionType
errorStatusCodeError code (if returned by API)String
errorMessageError messageString
httpStatusHTTP statusHttpStatus
logrefLogger reference (if returned by API)String
causeCause of the exception (if available)Throwable

Subclasses of MindsphereException¶

SubclassParentDescription
MindsphereServiceExceptionMindsphereExceptionIndicates an error at the API endpoint. For example, if the user tries to call an API with invalid values for mandatory parameters.
MindsphereClientExceptionMindsphereExceptionIndicates an error due to missing parameter values in a request. For example, if the user tries to call an API with NULL values for mandatory parameters.
MindsphereClientConfigurationExceptionMindsphereClientExceptionIndicates an error due to incorrect configuration parameters. For example, if a user sets an incorrect value for the proxy host or proxy port.
MindsphereForbiddenAccessExceptionMindsphereClientExceptionIndicates that no valid token can be retrieved with the provided credentials.