public class ScoreIsLessException : Exception{
public ScoreIsLessException(string message): base(message) {}
public static void Main()
throw (new ScoreIsLessException("This score is too low. You failed the exam."));
Console.WriteLine("You passed the exam. Congratulations.");