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

org.xipki.scep.client.ScepClientException Maven / Gradle / Ivy

There is a newer version: 6.5.3
Show newest version
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.scep.client;

/**
 * SCEP client exception.
 *
 * @author Lijun Liao (xipki)
 */

public class ScepClientException extends Exception {

  public ScepClientException(String message, Throwable cause) {
    super(message, cause);
  }

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

  public ScepClientException(Throwable cause) {
    super(cause.getMessage(), cause);
  }

  public static class OperationNotSupportedException extends ScepClientException {

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

  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy