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

org.nohope.cassandra.mapservice.CMapServiceException Maven / Gradle / Ivy

The newest version!
package org.nohope.cassandra.mapservice;

/**
 */
public final class CMapServiceException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public CMapServiceException(final String errorMessage) {
        super(errorMessage);
    }

    public CMapServiceException(final String errorMessage, final Throwable throwable) {
        super(errorMessage, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy