package openfl.errors {
/**
 * 	The IOError exception is thrown when some type of input or output failure
 * 	occurs. For example, an IOError exception is thrown if a read/write
 * 	operation is attempted on a socket that has not connected or that has
 * 	become disconnected.
 * 
 * @externs
 */
public class IOError extends openfl.errors.Error {
	/**
	 * 		Creates a new IOError object.
	 * 
	 * 		@param message A string associated with the error object.
	 * 	
	 */
	public function IOError(message:String = undefined) {
		super(undefined, undefined);
	}
}
}
