summaryrefslogtreecommitdiff
path: root/matlab/lib/+Ice/Exception.m
blob: 28eb49ed51b065f54fc8987b9951454649d0d713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
classdef (Abstract) Exception < MException
    % Exception   Summary of Exception
    %
    % Base class for Ice local and system exceptions.

    % Copyright (c) ZeroC, Inc. All rights reserved.

    methods(Abstract)
        ice_id(obj)
    end
    methods
        function obj = Exception(id, msg)
            obj = obj@MException(id, msg);
        end
    end
end