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

com.rapleaf.jack.exception.JackRuntimeException Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.rapleaf.jack.exception;

public class JackRuntimeException extends RuntimeException {
  public JackRuntimeException(Exception exception) {
    super(exception);
  }

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

  public JackRuntimeException(String message, Exception exception) {
    super(message, exception);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy