Constructors Summary |
---|
public RepositoryException(String msg, Throwable cause)Constructs a repository exception with the specified message
and cause.
super(msg, cause);
|
public RepositoryException(Throwable cause)Constructs a repository exception with the cause.
super(cause);
|
public RepositoryException(String msg)Constructs a repository exception with the specified message.
super(msg);
|
public RepositoryException()Constructs a repository exception.
super();
|