blob: 8e89902b166e73193696883fdc69f8fcc237184d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
classdef (Abstract) LocalException < Ice.Exception
% LocalException Summary of LocalException
%
% Base class for all Ice run-time exceptions.
% Copyright (c) ZeroC, Inc. All rights reserved.
methods
function obj = LocalException(id, msg)
obj = obj@Ice.Exception(id, msg)
end
end
end
|