public class RepositoryException extends RuntimeException
RepositoryException is thrown in situations when a user is trying
to use any of the repository API in a way that is invalid or not expected.null to a method when it does
not expect it. This would likely result in a IllegalArgumentException
or a NullPointerException depending on the implementation's code
conventions. The first exception type is preferred though.| Constructor and Description |
|---|
RepositoryException()
Instantiates a new repository exception.
|
RepositoryException(String message)
Instantiates a new repository exception.
|
RepositoryException(String message,
Throwable ex)
Instantiates a new repository exception.
|
RepositoryException(Throwable ex)
Instantiates a new repository exception.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic RepositoryException()
public RepositoryException(String message)
message - the messagepublic RepositoryException(Throwable ex)
ex - the exCopyright © 2010–2018 Eclipse Foundation. All rights reserved.