aboutsummaryrefslogtreecommitdiff
path: root/matlab/+types/MalException.m
blob: 1269a1d54f600ee81fa90e7a0730b5baba5befd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
classdef MalException < MException
    properties
        obj
    end
    methods
        function exc = MalException(obj)
            exc@MException('MalException:object', 'MalException'); 
            exc.obj = obj;
        end
    end
end