mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUAC-547: Associate a GuacamoleStatus with all GuacamoleExceptions.
This commit is contained in:
@@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole;
|
package org.glyptodon.guacamole;
|
||||||
|
|
||||||
|
import org.glyptodon.guacamole.protocol.GuacamoleStatus;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A generic exception thrown when part of the Guacamole API encounters
|
* A generic exception thrown when part of the Guacamole API encounters
|
||||||
@@ -62,4 +64,9 @@ public class GuacamoleClientException extends GuacamoleException {
|
|||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GuacamoleStatus getStatus() {
|
||||||
|
return GuacamoleStatus.CLIENT_BAD_REQUEST;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole;
|
package org.glyptodon.guacamole;
|
||||||
|
|
||||||
|
import org.glyptodon.guacamole.protocol.GuacamoleStatus;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A generic exception thrown when parts of the Guacamole API encounter
|
* A generic exception thrown when parts of the Guacamole API encounter
|
||||||
@@ -61,4 +63,15 @@ public class GuacamoleException extends Exception {
|
|||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the Guacamole status associated with this exception. This status
|
||||||
|
* can then be easily translated into an HTTP error code or Guacamole
|
||||||
|
* protocol error code.
|
||||||
|
*
|
||||||
|
* @return The corresponding Guacamole status.
|
||||||
|
*/
|
||||||
|
public GuacamoleStatus getStatus() {
|
||||||
|
return GuacamoleStatus.SERVER_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole;
|
package org.glyptodon.guacamole;
|
||||||
|
|
||||||
|
import org.glyptodon.guacamole.protocol.GuacamoleStatus;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A generic exception thrown when part of the Guacamole API fails to find
|
* A generic exception thrown when part of the Guacamole API fails to find
|
||||||
@@ -62,4 +64,9 @@ public class GuacamoleResourceNotFoundException extends GuacamoleClientException
|
|||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GuacamoleStatus getStatus() {
|
||||||
|
return GuacamoleStatus.RESOURCE_NOT_FOUND;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
package org.glyptodon.guacamole;
|
package org.glyptodon.guacamole;
|
||||||
|
|
||||||
|
import org.glyptodon.guacamole.protocol.GuacamoleStatus;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A security-related exception thrown when parts of the Guacamole API is
|
* A security-related exception thrown when parts of the Guacamole API is
|
||||||
@@ -61,4 +63,9 @@ public class GuacamoleSecurityException extends GuacamoleClientException {
|
|||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GuacamoleStatus getStatus() {
|
||||||
|
return GuacamoleStatus.CLIENT_FORBIDDEN;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user