diff --git a/src/bindings/mono/eina_mono/eina_array.cs b/src/bindings/mono/eina_mono/eina_array.cs index 47d6962f71..7ebb7ed31e 100644 --- a/src/bindings/mono/eina_mono/eina_array.cs +++ b/src/bindings/mono/eina_mono/eina_array.cs @@ -149,7 +149,7 @@ public class Array : IEnumerable, IDisposable { if (handle == IntPtr.Zero) { - throw new ArgumentNullException("Handle can't be null"); + throw new ArgumentNullException("handle", "Handle can't be null"); } Handle = handle; @@ -168,7 +168,7 @@ public class Array : IEnumerable, IDisposable { if (handle == IntPtr.Zero) { - throw new ArgumentNullException("Handle can't be null"); + throw new ArgumentNullException("handle", "Handle can't be null"); } Handle = handle;