io.deepsense.neptune.clientlibrary.exceptions.common.NeptuneException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.exceptions.common;
public abstract class NeptuneException extends Exception {
public NeptuneException() {
}
public NeptuneException(String message) {
super(message);
}
public NeptuneException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy