view m-toolbox/classes/+utils/+const/@warnings/warnings.m @ 43:bc767aaa99a8

CVS Update
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Tue, 06 Dec 2011 11:09:25 +0100
parents f0afece42f48
children
line wrap: on
line source

% WARNINGS class that defines different warning labels.
% 
% Supported warnings
% 
%  GENERAL - 'LTPDA:General'
%  METHOD_NOT_FOUND  - 'LTPDA:METHOD_NOT_FOUND'
% 
% 
% M Hewitson 08-08-08
% 
% $Id: warnings.m,v 1.1 2009/08/05 10:35:55 hewitson Exp $
% 

classdef warnings
  properties (Constant = true)
    GENERAL = 'LTPDA:General';
    METHOD_NOT_FOUND = 'LTPDA:Method_Not_Found';
  end
end