From 9fdb95ca9c3c8e3524845760b81a85c7a4c81a45 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 04 Dec 2009 11:49:33 +0000
Subject: [PATCH] Drop util package: move ByteString hierarchy into top level sdk package and other "internal" classes to com.sun.*. Move messages into their own package. Clean up imports.
---
sdk/src/org/opends/sdk/OperationTimeoutException.java | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/sdk/src/org/opends/sdk/OperationTimeoutException.java b/sdk/src/org/opends/sdk/OperationTimeoutException.java
index dfaca1e..ac9bee2 100644
--- a/sdk/src/org/opends/sdk/OperationTimeoutException.java
+++ b/sdk/src/org/opends/sdk/OperationTimeoutException.java
@@ -27,15 +27,22 @@
package org.opends.sdk;
+
+
import org.opends.sdk.responses.Result;
+
+
/**
- * Created by IntelliJ IDEA. User: boli Date: Dec 2, 2009 Time: 1:28:13 PM To
- * change this template use File | Settings | File Templates.
+ * Thrown when the result code returned in a Result indicates that the
+ * Request was aborted because it did not complete in the required time
+ * out period.
*/
+@SuppressWarnings("serial")
public class OperationTimeoutException extends ErrorResultException
{
- public OperationTimeoutException(Result result) {
+ public OperationTimeoutException(Result result)
+ {
super(result);
}
}
--
Gitblit v1.10.0