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

io.github.kgress.scaffold.exception.ComponentException Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package io.github.kgress.scaffold.exception;

public class ComponentException extends RuntimeException {

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy