1 | function aedes_errordump(errorstruct) |
---|
2 | % AEDES_ERRORDUMP - Write the lasterror structure into file |
---|
3 | % |
---|
4 | % |
---|
5 | % Synopsis: |
---|
6 | % |
---|
7 | % Description: |
---|
8 | % |
---|
9 | % Examples: |
---|
10 | % |
---|
11 | % See also: |
---|
12 | % |
---|
13 | |
---|
14 | % This function is a part of Aedes - A graphical tool for analyzing |
---|
15 | % medical images |
---|
16 | % |
---|
17 | % Copyright (C) 2006 Juha-Pekka Niskanen <Juha-Pekka.Niskanen@uku.fi> |
---|
18 | % |
---|
19 | % Department of Physics, Department of Neurobiology |
---|
20 | % University of Kuopio, FINLAND |
---|
21 | % |
---|
22 | % This program may be used under the terms of the GNU General Public |
---|
23 | % License version 2.0 as published by the Free Software Foundation |
---|
24 | % and appearing in the file LICENSE.TXT included in the packaging of |
---|
25 | % this program. |
---|
26 | % |
---|
27 | % This program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
---|
28 | % WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
---|
29 | |
---|
30 | |
---|
31 | debug=false; |
---|
32 | |
---|
33 | if debug |
---|
34 | keyboard |
---|
35 | else |
---|
36 | % Construct file name and path for the errordump file |
---|
37 | error_dir = [prefdir(1),filesep]; |
---|
38 | error_fname =['aedes_errordump_',datestr(now,30),'.mat']; |
---|
39 | |
---|
40 | % Get revision information |
---|
41 | [rev,repo]=aedes_revision; |
---|
42 | |
---|
43 | % Save the errorstruct |
---|
44 | save([error_dir,error_fname],'errorstruct','rev','repo','-mat') |
---|
45 | |
---|
46 | |
---|
47 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
48 | % Error dialog |
---|
49 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
50 | hh=errordlg({['Oops... An unhandeled error has occurred in Aedes! ',... |
---|
51 | 'This is probably a bug. ',... |
---|
52 | 'An error dump was written into the following file:'],... |
---|
53 | ['"',error_dir,error_fname,'"'],'','',... |
---|
54 | 'The returned error message was:',... |
---|
55 | errorstruct.message,errorstruct.identifier,'',... |
---|
56 | ['If you get this error dialog every time you try to close Aedes ' ... |
---|
57 | 'main window, run the command "aedes_killfigs" in the Matlab ' ... |
---|
58 | 'workspace. This will delete ALL currently open Matlab figures ' ... |
---|
59 | 'with brute force!!!']},... |
---|
60 | 'UNHANDELED ERROR!','modal'); |
---|
61 | end |
---|