Servertec ErrorLogEntry
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
How To
Change Log
Future Plans
Knowledge Base
Documentation
Conventions
Command Line
Administrator
Localization
Programming
Security
Performance
Deployment
Server API
AccessLogEntry
Codecs
Connection
ConnectionPool...
DString
ErrorLogEntry
EventLogEntry
FileCache
FileUpload
IOHandler
IOManager
iws
Logger
MonitorEvent...
MultiPartForm
QuickSort
Realm
RealmAdmin...
RealmManager
ServletContextImpl
ServletContext...
ServletImpl
ServletManager
SocketHandler
Utils

Servlet / JSP API
Xerces API
CGI
SSI
Servlets
Config Files
Log Files
Classes
Directory Tree
Examples
Legal
Contact Us

 

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 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 occurred 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
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Sun Sep 04 14:57:18 EDT 2005