diff assertType.m @ 886:8894e9c49e40 feature/timesteppers

Merge with default for latest changes
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 15 Nov 2018 16:36:21 -0800
parents 75f9b7a80f28
children
line wrap: on
line diff
--- a/assertType.m	Mon Sep 10 16:19:16 2018 +0200
+++ b/assertType.m	Thu Nov 15 16:36:21 2018 -0800
@@ -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