Mercurial > hg > ltpda
view m-toolbox/classes/+utils/+const/@warnings/warnings.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +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