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

org.kgrid.adapter.api.AdapterException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package org.kgrid.adapter.api;

public class AdapterException extends RuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy