Commit 05e6ec4e authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Force that an exception is provided. We should always wrap an exception.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10515 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2cec274b
......@@ -4,13 +4,6 @@ package org.jivesoftware.openfire.clearspace;
* Thrown when an exception occurs connecting to CS.
*/
public class ConnectException extends Exception {
public ConnectException() {
super();
}
public ConnectException(String s) {
super(s);
}
public ConnectException(String s, Throwable throwable) {
super(s, throwable);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment