Skip navigation links
A B C E G H I L O S T V 

A

AbstractException - Exception in org.refcodes.exception
Base exception for unpredictable / checked (untestable states) exceptions, providing functionality for exception specific multi-language messages.
AbstractException(String, Throwable) - Constructor for exception org.refcodes.exception.AbstractException
 
AbstractException(String) - Constructor for exception org.refcodes.exception.AbstractException
 
AbstractException(Throwable) - Constructor for exception org.refcodes.exception.AbstractException
 
AbstractException(String, Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException
AbstractException(String, String) - Constructor for exception org.refcodes.exception.AbstractException
AbstractException(Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException
/**
AbstractException.AbstractHiddenException - Exception in org.refcodes.exception
Base exception for hidden (unchecked) / subsystem exceptions, providing functionality for exception specific multi-language messages.
AbstractException.AbstractRuntimeException - Exception in org.refcodes.exception
Base exception for runtime (unchecked) / predictable (testable states) exceptions, providing functionality for exception specific multi-language messages.
AbstractHiddenException(String, Throwable) - Constructor for exception org.refcodes.exception.AbstractException.AbstractHiddenException
 
AbstractHiddenException(Throwable) - Constructor for exception org.refcodes.exception.AbstractException.AbstractHiddenException
 
AbstractHiddenException(String, Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractHiddenException
AbstractHiddenException(Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractHiddenException
/**
AbstractRuntimeException(String, Throwable) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
 
AbstractRuntimeException(String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
 
AbstractRuntimeException(Throwable) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
 
AbstractRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
AbstractRuntimeException(String, String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
AbstractRuntimeException(Throwable, String) - Constructor for exception org.refcodes.exception.AbstractException.AbstractRuntimeException
/**

B

BugException - Exception in org.refcodes.exception
Exception bugs (unchecked).
BugException(String) - Constructor for exception org.refcodes.exception.BugException
 
BugException(String, Throwable) - Constructor for exception org.refcodes.exception.BugException
 
BugException(Throwable) - Constructor for exception org.refcodes.exception.BugException
 
BugException(String, String) - Constructor for exception org.refcodes.exception.BugException
 
BugException(String, Throwable, String) - Constructor for exception org.refcodes.exception.BugException
 
BugException(Throwable, String) - Constructor for exception org.refcodes.exception.BugException
 

C

catchException() - Method in interface org.refcodes.exception.Exceptional
This methods awaits an Exception, usually happening inside a daemon thread and therefore not directly accessible by some (business) logic.

E

ErrorCodeAccessor - Interface in org.refcodes.exception
Provides an accessor for an error code property.
ErrorCodeAccessor.ErrorCodeMutator - Interface in org.refcodes.exception
Provides a mutator for an error code property.
ErrorCodeAccessor.ErrorCodeProperty - Interface in org.refcodes.exception
Provides an error code property
ExceptionAccessor<E extends Throwable> - Interface in org.refcodes.exception
Provides an accessor for an Exception property.
ExceptionAccessor.ExceptionMutator<E> - Interface in org.refcodes.exception
Provides a mutator for an Exception property.
ExceptionAccessor.ExceptionProperty<E extends Throwable> - Interface in org.refcodes.exception
Provides a an Exception property.
Exceptional<E extends Exception> - Interface in org.refcodes.exception
The Exceptional interface provides means for threads to wait (sleep) when calling #onException() till a next Exception occurs or till the waiting (sleeping) threads are released.
ExceptionUtility - Class in org.refcodes.exception
Utility class for simplifying the work with exceptions.

G

getErrorCode() - Method in exception org.refcodes.exception.AbstractException.AbstractHiddenException
 
getErrorCode() - Method in exception org.refcodes.exception.AbstractException.AbstractRuntimeException
 
getErrorCode() - Method in exception org.refcodes.exception.AbstractException
 
getErrorCode() - Method in interface org.refcodes.exception.ErrorCodeAccessor
Provides the according exception code.
getException() - Method in interface org.refcodes.exception.ExceptionAccessor
Retrieves the exception from the exception property.

H

HiddenException - Exception in org.refcodes.exception
Exception for hidden (unchecked) / subsystem exceptions.
HiddenException(String, Throwable) - Constructor for exception org.refcodes.exception.HiddenException
 
HiddenException(Throwable) - Constructor for exception org.refcodes.exception.HiddenException
 
HiddenException(String, Throwable, String) - Constructor for exception org.refcodes.exception.HiddenException
 
HiddenException(Throwable, String) - Constructor for exception org.refcodes.exception.HiddenException
 

I

isThrownAsOfAlreadyClosed(IOException) - Static method in class org.refcodes.exception.ExceptionUtility
Tests whether the provided exception is thrown as of something already being closed.

L

lastException() - Method in interface org.refcodes.exception.Exceptional
Returns the last exception which was catchable via Exceptional.catchException().
LockedException - Exception in org.refcodes.exception
Thrown in case an instance being locked is still being accessed in a modifying way (see org.refcodes.mixin.Lockable in the refcodes-mixin artifact).
LockedException(String, String) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException(String, Throwable, String) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException(String, Throwable) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException(String) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException(Throwable, String) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException(Throwable) - Constructor for exception org.refcodes.exception.LockedException
 
LockedException.LockedRuntimeException - Exception in org.refcodes.exception
Thrown in case an instance being locked is still being accessed in a modifying way (see org.refcodes.mixin.Lockable in the refcodes-mixin artifact).
LockedRuntimeException(String, String) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 
LockedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 
LockedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 
LockedRuntimeException(String) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 
LockedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 
LockedRuntimeException(Throwable) - Constructor for exception org.refcodes.exception.LockedException.LockedRuntimeException
 

O

org.refcodes.exception - package org.refcodes.exception
 

S

setErrorCode(String) - Method in interface org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator
Sets the according exception code.
setException(E) - Method in interface org.refcodes.exception.ExceptionAccessor.ExceptionMutator
Sets the exception for the exception property.

T

toException(Collection<?>) - Static method in class org.refcodes.exception.ExceptionUtility
Iterates through the objects passed in the collection and tests them whether them implement the ExceptionAccessor.
toMessage(Throwable) - Static method in class org.refcodes.exception.ExceptionUtility
Generates an exception message from the given exception.
toRootCause(Throwable) - Static method in class org.refcodes.exception.ExceptionUtility
Traverses through the Throwable's cause instances recursively until the root cause is detected (this is the cause which has no cause any more).
toStackTrace(Throwable) - Static method in class org.refcodes.exception.ExceptionUtility
Retrieves a stack trace from the given exception.
Trap - Interface in org.refcodes.exception
Interface declaring base exception functionality for all of refcodes exceptions.

V

VerifyRuntimeException - Exception in org.refcodes.exception
A verify exception is thrown in case the verification of the result (of an algorithm) failed.
VerifyRuntimeException(String) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VerifyRuntimeException(String, Throwable) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VerifyRuntimeException(Throwable) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VerifyRuntimeException(String, String) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VerifyRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VerifyRuntimeException(Throwable, String) - Constructor for exception org.refcodes.exception.VerifyRuntimeException
 
VetoException - Exception in org.refcodes.exception
Thrown to signal that an operation is being vetoed by a third party observing the invocation of the given operation.
VetoException(String, String) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException(String, Throwable, String) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException(String, Throwable) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException(String) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException(Throwable, String) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException(Throwable) - Constructor for exception org.refcodes.exception.VetoException
 
VetoException.VetoRuntimeException - Exception in org.refcodes.exception
Thrown to signal that an operation is being vetoed by a third party observing the invocation of the given operation.
VetoRuntimeException(String, String) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
VetoRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
VetoRuntimeException(String, Throwable) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
VetoRuntimeException(String) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
VetoRuntimeException(Throwable, String) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
VetoRuntimeException(Throwable) - Constructor for exception org.refcodes.exception.VetoException.VetoRuntimeException
 
A B C E G H I L O S T V 
Skip navigation links

Copyright © 2016. All rights reserved.