comparison m-toolbox/classes/+utils/+const/@warnings/warnings.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % WARNINGS class that defines different warning labels.
2 %
3 % Supported warnings
4 %
5 % GENERAL - 'LTPDA:General'
6 % METHOD_NOT_FOUND - 'LTPDA:METHOD_NOT_FOUND'
7 %
8 %
9 % M Hewitson 08-08-08
10 %
11 % $Id: warnings.m,v 1.1 2009/08/05 10:35:55 hewitson Exp $
12 %
13
14 classdef warnings
15 properties (Constant = true)
16 GENERAL = 'LTPDA:General';
17 METHOD_NOT_FOUND = 'LTPDA:Method_Not_Found';
18 end
19 end