All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaffold.libs_as.starling.errors.MissingContextError.as Maven / Gradle / Ivy

// =================================================================================================
//
//	Starling Framework
//	Copyright 2011-2015 Gamua. All Rights Reserved.
//
//	This program is free software. You can redistribute and/or modify it
//	in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================

package starling.errors
{
    /** A MissingContextError is thrown when a Context3D object is required but not (yet) 
     *  available. */
    public class MissingContextError extends Error
    {
        /** Creates a new MissingContextError object. */
        public function MissingContextError(message:*="Starling context is missing", id:*=0)
        {
            super(message, id);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy