Class IOError

IOError is a subclass of Exception that is raised when an IO operation fails or does not have permission.

class IOError < Exception
{
    # From Exception
    public var @message: String
    public var @traceback: List[String]
}

constructor(message: String): IOError