Servertec   ErrorLogEntry
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Documentation
Conventions
Users
Reference
iServer API
AccessLogEntry
Codecs
Connection
ConnectionPool...
DString
ErrorLogEntry
EventLogEntry
FileUpload
iws
Logger
MultiPartForm
QuickSort
Realm
Utils

Servlet API
CGI
SSI
Servlets
Logs

Samples
Sales
Legal
Feedback

 

java.lang.Object
 |
 +--stec.iws.ErrorLogEntry

public class ErrorLogEntry

Defines variables used by iServer for logging errors.

Fields

Field Description
error The error that occurred.
message Any error message.
timestamp When the error occured in milliseconds since January 1, 1970, 00:00:00 GMT.

error

The error that occurred.

Syntax

public Throwable error

Example

os.print(entry.error.toString());

message

Any error message.

Syntax

public String message

Example

if(entry.message != null)
{
  os.print(entry.message);
}

timestamp

When the error occured in milliseconds since January 1, 1970, 00:00:00 GMT.

Syntax

public long timestamp

Example

os.print(new Date(entry.timestamp).toString());
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Mon Jun 28 23:14:48 EDT 1999