com.wavefront.data.ParseException Maven / Gradle / Ivy
The newest version!
package com.wavefront.data;
/**
* Base class for all parsing-related exceptions.
*
* @author [email protected]
*/
public class ParseException extends IllegalArgumentException {
public ParseException(String message) {
super(message);
}
}