trusona/trusona-server-sdk-java

View on GitHub
trusona-sdk-resources/src/main/java/com/trusona/sdk/resources/exception/DeviceNotFoundException.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.trusona.sdk.resources.exception;

/**
 * An error that occurs when the action being taken requires a device to exist, but it cannot be found.
 */
public class DeviceNotFoundException extends TrusonaException {
  private static final long serialVersionUID = 507551471121269967L;

  public DeviceNotFoundException(String message) {
    super(message);
  }
}