Switch to unified view

a b/functions/adminfunc/eeglab_warning.m
1
% EEGLAB_WARNING - generate warning disabling backtrace
2
%
3
% Usage: >>  eeglab_warning(msg);
4
%
5
% Inputs: msg, a string of character.
6
%
7
% Author: Arnaud Delorme, SCCN, INC, UCSD, 2024-
8
%
9
% see also: EEGLAB
10
11
% Copyright (C) 2024 Arnaud Delorme, UCSD
12
%
13
% This file is part of EEGLAB, see http://www.eeglab.org
14
% for the documentation and details.
15
%
16
% Redistribution and use in source and binary forms, with or without
17
% modification, are permitted provided that the following conditions are met:
18
%
19
% 1. Redistributions of source code must retain the above copyright notice,
20
% this list of conditions and the following disclaimer.
21
%
22
% 2. Redistributions in binary form must reproduce the above copyright notice,
23
% this list of conditions and the following disclaimer in the documentation
24
% and/or other materials provided with the distribution.
25
%
26
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
30
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
36
% THE POSSIBILITY OF SUCH DAMAGE.
37
38
function eeglab_warning(msg)
39
40
if nargin < 1
41
    error('eeglab_warning needs at least one argument');
42
end
43
44
res = warning('backtrace');
45
warning('backtrace', 'off');
46
warning(msg)
47
warning('backtrace', res.state);