com.seventytwomiles.architecturerules.exceptions
Class CyclicRedundancyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.seventytwomiles.architecturerules.exceptions.CyclicRedundancyException
All Implemented Interfaces:
java.io.Serializable

public class CyclicRedundancyException
extends java.lang.RuntimeException

Thrown to indicate that a cyclic redundancy was found.

Author:
mikenereson
See Also:
RuntimeException, Serialized Form

Constructor Summary
CyclicRedundancyException()
           
CyclicRedundancyException(java.lang.String message)
           
CyclicRedundancyException(java.lang.String packageName, java.lang.String efferentPackage)
          Constructs a new CyclicRedundancyException with a generated message containing the given packageName and efferentPackage.
CyclicRedundancyException(java.lang.String message, java.lang.Throwable cause)
           
CyclicRedundancyException(java.lang.Throwable cause)
           
 
Method Summary
 
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

CyclicRedundancyException

public CyclicRedundancyException()
See Also:
RuntimeException.RuntimeException()

CyclicRedundancyException

public CyclicRedundancyException(java.lang.String message)
See Also:
RuntimeException.RuntimeException(String)

CyclicRedundancyException

public CyclicRedundancyException(java.lang.Throwable cause)
See Also:
RuntimeException.RuntimeException(Throwable)

CyclicRedundancyException

public CyclicRedundancyException(java.lang.String message,
                                 java.lang.Throwable cause)
See Also:
RuntimeException.RuntimeException(String,Throwable)

CyclicRedundancyException

public CyclicRedundancyException(java.lang.String packageName,
                                 java.lang.String efferentPackage)

Constructs a new CyclicRedundancyException with a generated message containing the given packageName and efferentPackage.

Parameters:
packageName - String the name of the package containing the cyclic dependency
efferentPackage - String the name of the package the package is cyclicly involved with.


Copyright © 2008. All Rights Reserved.