trusona/trusona-server-sdk-java

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

Summary

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

/**
 * An error that occurs when attempting to bind a device to a user that is already bound to a different user. Will not
 * get thrown if the device is already bound to the same user.
 */
public class DeviceAlreadyBoundException extends TrusonaException {
  private static final long serialVersionUID = 1202135856193971503L;

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