summaryrefslogtreecommitdiff
path: root/src/main/kotlin/InMessage.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/InMessage.kt')
-rw-r--r--src/main/kotlin/InMessage.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/InMessage.kt b/src/main/kotlin/InMessage.kt
index 03f3428..bf76ef9 100644
--- a/src/main/kotlin/InMessage.kt
+++ b/src/main/kotlin/InMessage.kt
@@ -1,3 +1,4 @@
+import except.InvalidMessageException
import java.math.BigInteger
/**
@@ -7,7 +8,7 @@ import java.math.BigInteger
* @param tl The transport layer API.
* @param maxSize The maximum message size negotiated with the remote part.
* @param reqTag The required tag.
- * @throws InvalidMessageException if the message that is currently being read is invalid.
+ * @throws except.InvalidMessageException if the message that is currently being read is invalid.
*/
class InMessage(val tl: TransportLayer, maxSize: UInt, val reqTag: UShort) {
/**