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

org.kgrid.shelf.ShelfException Maven / Gradle / Ivy

package org.kgrid.shelf;

public class ShelfException extends RuntimeException  {

  public ShelfException() {
    super();
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy