org.kgrid.adapter.api.AdapterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adapter-api Show documentation
Show all versions of adapter-api Show documentation
Adapter interface and base classes
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);
}
}