lauromoura pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=547f8767a9d73e49084679954c53ac6704b699eb

commit 547f8767a9d73e49084679954c53ac6704b699eb
Author: Bruno da Silva Belo <[email protected]>
Date:   Mon Oct 28 11:43:56 2019 -0300

    csharp: Add missing exception ctor from Errors.cs.
    
    Summary: ref T8392
    
    Reviewers: lauromoura, felipealmeida, segfaultxavi, YOhoho
    
    Reviewed By: lauromoura
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T8392
    
    Differential Revision: https://phab.enlightenment.org/D10455
---
 src/tests/efl_mono/Errors.cs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/tests/efl_mono/Errors.cs b/src/tests/efl_mono/Errors.cs
index ee22ff9619..94156e9a16 100644
--- a/src/tests/efl_mono/Errors.cs
+++ b/src/tests/efl_mono/Errors.cs
@@ -37,7 +37,9 @@ class TestEolianError
 {
 
     public class CustomException : Exception {
+        public CustomException() {}
         public CustomException(string msg): base(msg) {}
+        public CustomException(string msg, Exception inner) : base(msg, inner) 
{}
     }
 
     class Overrider : Dummy.TestObject {

-- 


Reply via email to