You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
369 B
21 lines
369 B
package seng302.Exceptions;
|
|
|
|
/**
|
|
* Created by f123 on 25-Apr-17.
|
|
*/
|
|
|
|
/**
|
|
* Exception thrown when we cannot generate Race.xml data, and send an XML message.
|
|
*/
|
|
public class InvalidRaceDataException extends RuntimeException
|
|
{
|
|
public InvalidRaceDataException()
|
|
{
|
|
}
|
|
|
|
public InvalidRaceDataException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|