view NGSrich_0.5.5/src/exceptions/RangeFormatException.java @ 0:89ad0a9cca52 default tip

Uploaded
author pfrommolt
date Mon, 21 Nov 2011 08:12:19 -0500
parents
children
line wrap: on
line source

package exceptions;

public class RangeFormatException extends RangeException {
	
	private static final long serialVersionUID = -7603714654119196278L;

	public RangeFormatException(){
		super("The range limits are misformatted.");
	}
	
	public RangeFormatException(String message){
		super(	message + "\n" +
				"The range limits are misformatted.");
	}
}