diff assertType.m @ 832:5573913a0949 feature/burgers1d

Merged with default, and updated +scheme/Burgers1D accordingly
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Tue, 11 Sep 2018 15:58:35 +0200
parents 75f9b7a80f28
children
line wrap: on
line diff
--- a/assertType.m	Tue Sep 11 13:24:08 2018 +0200
+++ b/assertType.m	Tue Sep 11 15:58:35 2018 +0200
@@ -1,5 +1,11 @@
 function assertType(obj, type)
-    if ~isa(obj, type)
-        error('sbplib:assertType:wrongType', '"%s" must have type "%s", found "%s"', inputname(1), type, class(obj));
+    if ~iscell(type)
+        if ~isa(obj, type)
+            error('sbplib:assertType:wrongType', '"%s" must have type "%s", found "%s"', inputname(1), type, class(obj));
+        end
+    else
+        if ~isAnyOf(obj, type)
+            error('sbplib:assertType:wrongType', '"%s" must be one of the types %s, found "%s"', inputname(1), toString(type), class(obj));
+        end
     end
 end