using System; namespace Plagiarism { /// /// Custom Exception for students that have exceeded the allowable number of exam retries. /// /// public class StudentExceededAllowableExamRetries : Exception { public StudentExceededAllowableExamRetries() { } public StudentExceededAllowableExamRetries(string message) : base((string) message) { } } }