csharp: Add missing exception ctor from Errors.cs.
authorBruno da Silva Belo <brunodasilvabelo@gmail.com>
Mon, 28 Oct 2019 14:43:56 +0000 (11:43 -0300)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Nov 2019 02:20:39 +0000 (11:20 +0900)
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

index ee22ff9..94156e9 100644 (file)
@@ -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 {