Exception Handling
catch "Cannot add" {print "I have caught it.\n"};
try {timer.start[2000]; while true {}}
catch "" {print "I have caught my own timeout error.\n"};
try {timer.start[5000]; while true {}}
catch "" {print "I cannot catch the server's timeout.\n"};