We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81105f commit 68c8b23Copy full SHA for 68c8b23
volatility3/framework/objects/utility.py
@@ -120,10 +120,10 @@ def address_to_string(
120
The decoded string extracted from memory.
121
"""
122
if not isinstance(address, int):
123
- raise TypeError("It takes an int")
+ raise TypeError("Address must be a valid integer")
124
125
if count < 1:
126
- raise ValueError("It requires a positive count")
+ raise ValueError("Count must be greater than 0")
127
128
layer = context.layers[layer_name]
129
text = b""
0 commit comments