view m-toolbox/classes/+utils/+const/@warnings/warnings.m @ 26:ce4df2e95a55
database-connection-manager
Remove LTPDARepositoryManager initialization
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
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