blob: 69fdad84ccb444f2b5553969442495a7ace63530 (
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
|