| File was renamed from sdk/src/org/opends/sdk/CancelledException.java |
| | |
| | | |
| | | /** |
| | | * Thrown when the result code returned in a Result indicates that the |
| | | * Request was cancelled. |
| | | * Request was cancelled. More specifically, this exception is used for |
| | | * the following error result codes: |
| | | * <ul> |
| | | * <li>{@link ResultCode#CANCELLED} - the requested operation was |
| | | * cancelled. |
| | | * <li>{@link ResultCode#CLIENT_SIDE_USER_CANCELLED} - the requested |
| | | * operation was cancelled by the user. |
| | | * </ul> |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | public class CancelledException extends ErrorResultException |
| | | public class CancelledResultException extends ErrorResultException |
| | | { |
| | | CancelledException(Result result) |
| | | CancelledResultException(Result result) |
| | | { |
| | | super(result); |
| | | } |