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

com.kbanquan.chain.sdk.exceptions.ServerException Maven / Gradle / Ivy

package com.kbanquan.chain.sdk.exceptions;


public class ServerException extends Exception {

  private Long timestamp;

  public Long getTimestamp() {
    return timestamp;
  }

  public ServerException(String message, Long timestamp) {
    super(message);
    this.timestamp = timestamp;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy