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

software.amazon.jsii.JsiiError Maven / Gradle / Ivy

package software.amazon.jsii;

/**
 * A nonrecoverable error from the jsii runtime,
 * usually the kernel.
 */
public final class JsiiError extends JsiiException {
  public static final long serialVersionUID = 1L;

  /**
   * Creates an exception.
   * @param message The error message
   */
  JsiiError(final String message) {
      super(message);
  }

  /**
   * Creates an exception.
   * @param e The error that caused this exception
   */
  JsiiError(final Throwable e) {
      super(e);
  }

  /**
   * Creates an exception.
   * @param message The error message
   * @param e The error that caused this exception
   */
  JsiiError(final String message, final Throwable e) {
      super(message, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy