de.oio.bugkilla.player
Class IllegalStructureException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--de.oio.bugkilla.player.IllegalStructureException
All Implemented Interfaces:
java.io.Serializable

public class IllegalStructureException
extends java.lang.RuntimeException

A IllegalStructureException is thrown if a TestSeries element will be added in wrong order.
TestSeries
|--Scenario
  |--TestSequence
  | |-TestStep(a)
  | |-TestStep(b)
  |--TestSequence
   |-TestStep(1)
   |-TestStep(2)

Author:
cdedek
See Also:
Serialized Form

Constructor Summary
IllegalStructureException()
          Constructs a new IllegalStructureException with null as its detail message.
IllegalStructureException(java.lang.String message)
          Constructs a new IllegalStructureException with the specified detail message.
IllegalStructureException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new IllegalStructureException with the specified detail message and cause.
IllegalStructureException(java.lang.Throwable cause)
          Constructs a new IllegalStructureException with the specified cause and a detail message of (cause==null ?
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalStructureException

public IllegalStructureException()
Constructs a new IllegalStructureException with null as its detail message.


IllegalStructureException

public IllegalStructureException(java.lang.String message)
Constructs a new IllegalStructureException with the specified detail message.

Parameters:
message - the specified detail message

IllegalStructureException

public IllegalStructureException(java.lang.String message,
                                 java.lang.Throwable cause)
Constructs a new IllegalStructureException with the specified detail message and cause.

Parameters:
message - the specified detail message
cause - the cause of the exception

IllegalStructureException

public IllegalStructureException(java.lang.Throwable cause)
Constructs a new IllegalStructureException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - the cause of the exception


Copyright © Orientation in Objects GmbH. All Rights Reserved.