scaffold.libs_as.starling.errors.NotSupportedError.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 NotSupportedError is thrown when you attempt to use a feature that is not supported
* on the current platform. */
public class NotSupportedError extends Error
{
/** Creates a new NotSupportedError object. */
public function NotSupportedError(message:* = "", id:* = 0)
{
super(message, id);
}
}
}