blob: 9f85dba4701b4922961a892d6fd87f62618e3184 (
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) 2003-2017 ZeroC, Inc. All rights reserved.
methods
function obj = LocalException(id, msg)
obj = obj@Ice.Exception(id, msg)
end
end
end
|