Servertec ErrorLogEntry
Documentation
Conventions
Command Line
Java API
AccessLogEntry
Codecs
DString
ErrorLogEntry
EventLogEntry
iws
Logger
ServletManager
Utils

Servlet API
Servlets
Config Files
Classes
Directory Tree

Return

 

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

public final class ErrorLogEntry

Defines variables used by Servertec Internet Server for logging errors.

Fields

Field Description
error The error that occurred.
message Any error message.
timestamp When the error occurred.

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 occurred.

Syntax

public long timestamp

Example

os.print(entry.timestamp);
 top of page
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Mon Sep 05 14:25:44 EDT 2005