summaryrefslogtreecommitdiff
path: root/matlab/lib/+Ice/Exception.m
blob: f2c4d83240a0bd1f790914ab53491153acc54d97 (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