package { // The actionscript_zoo_lib_VirtualPetNameException class represents an exception thrown when // a generally invalid pet name is specified for a pet public class actionscript_zoo_lib_VirtualPetNameException extends Error { // Constructor public function actionscript_zoo_lib_VirtualPetNameException ( message:String = "Invalid pet name specified.") { // Invoke the Error constructor super(message); } } }