package org.as3lib.errors { /** * An error class used to ensure the correct behavior of asbsract classes. * * @author Mims Wright */ public class lib_flex_animation_code_10_org_as3lib_errors_AbstractError extends Error { /** * Use this error in the constructor for your abstract class. */ public static const CONSTRUCTOR_ERROR:String = "ERROR: An abstract class may not be instantiated."; /** * Use this error in abstract methods that should be overridden in your abstract class. */ public static const METHOD_ERROR:String = "ERROR: Failed to implement an abstract method."; public function lib_flex_animation_code_10_org_as3lib_errors_AbstractError(message:String="", id:int=0) { super(message, id); } } }