/* * Purpose: Exception to indicate that the given input is invalid for a given sort * Authors: Ben Hample, Greg Krywicki, Robert Russell * Date: 12/18/07 */ public class SortException extends Throwable { String description; //the string that describes the exception /* * Purpose: Constructor for new a RadixSortException * Pre: None * Post: None * In: A string describing the exception * Out: None */ public SortException(String description) { this.description = description; } }