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

org.xipki.shell.CmdFailure Maven / Gradle / Ivy

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

package org.xipki.shell;

/**
 * Action failure.
 *
 * @author Lijun Liao (xipki)
 * @since 2.0.0
 */

public class CmdFailure extends Exception {

  public CmdFailure() {
  }

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

  public CmdFailure(Throwable cause) {
    super(cause);
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy