Package elki.utilities.exceptions
Class TooManyRetriesException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- elki.utilities.exceptions.AbortException
-
- elki.utilities.exceptions.TooManyRetriesException
-
- All Implemented Interfaces:
java.io.Serializable
public class TooManyRetriesException extends AbortException
Exception thrown when too many retries were attempted.- Since:
- 0.6.0
- Author:
- Erich Schubert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version.
-
Constructor Summary
Constructors Constructor Description TooManyRetriesException(java.lang.String message)
Constructor.TooManyRetriesException(java.lang.String message, java.lang.Throwable cause)
Constructor.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TooManyRetriesException
public TooManyRetriesException(java.lang.String message)
Constructor.- Parameters:
message
- Error message.
-
TooManyRetriesException
public TooManyRetriesException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- Error messagecause
- Cause
-
-