org.openstreetmap.atlas.geography.atlas.exception.AtlasIntegrityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.geography.atlas.exception;
import org.openstreetmap.atlas.exception.CoreException;
/**
* @author matthieun
*/
public class AtlasIntegrityException extends CoreException
{
private static final long serialVersionUID = -2780280960455310936L;
public AtlasIntegrityException(final String message)
{
super(message);
}
public AtlasIntegrityException(final String message, final Object... arguments)
{
super(message, arguments);
}
public AtlasIntegrityException(final String message, final Throwable cause)
{
super(message, cause);
}
public AtlasIntegrityException(final String message, final Throwable cause,
final Object... arguments)
{
super(message, cause, arguments);
}
}