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

com.ibm.ta.sdk.spi.plugin.TARuntimeException Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019,2020
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.ta.sdk.spi.plugin;

public class TARuntimeException extends RuntimeException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy