akka.event
Class Logging.Error

java.lang.Object
  extended by akka.event.Logging.Error
All Implemented Interfaces:
NoSerializationVerificationNeeded, Logging.LogEvent, java.io.Serializable, scala.Equals, scala.Product
Enclosing class:
Logging

public static class Logging.Error
extends java.lang.Object
implements Logging.LogEvent, scala.Product, scala.Serializable

For ERROR Logging

See Also:
Serialized Form

Nested Class Summary
static class Logging.Error.NoCause$
          Null Object used for errors without cause Throwable
 
Constructor Summary
Logging.Error(java.lang.String logSource, java.lang.Class<?> logClass, java.lang.Object message)
           
Logging.Error(java.lang.Throwable cause, java.lang.String logSource, java.lang.Class<?> logClass, java.lang.Object message)
           
 
Method Summary
 java.lang.Throwable cause()
           
 Logging.LogLevel level()
          The LogLevel of this LogEvent
 java.lang.Object logClass()
          The class of the source of this event
 java.lang.String logSource()
          The source of this event
 java.lang.Object message()
          The message, may be any object or null.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface akka.event.Logging.LogEvent
thread, timestamp
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Constructor Detail

Logging.Error

public Logging.Error(java.lang.Throwable cause,
                     java.lang.String logSource,
                     java.lang.Class<?> logClass,
                     java.lang.Object message)

Logging.Error

public Logging.Error(java.lang.String logSource,
                     java.lang.Class<?> logClass,
                     java.lang.Object message)
Method Detail

cause

public java.lang.Throwable cause()

logSource

public java.lang.String logSource()
Description copied from interface: Logging.LogEvent
The source of this event

Specified by:
logSource in interface Logging.LogEvent

logClass

public java.lang.Object logClass()
Description copied from interface: Logging.LogEvent
The class of the source of this event

Specified by:
logClass in interface Logging.LogEvent

message

public java.lang.Object message()
Description copied from interface: Logging.LogEvent
The message, may be any object or null.

Specified by:
message in interface Logging.LogEvent

level

public Logging.LogLevel level()
Description copied from interface: Logging.LogEvent
The LogLevel of this LogEvent

Specified by:
level in interface Logging.LogEvent