view m-toolbox/classes/+utils/+const/@warnings/warnings.m @ 7:1e91f84a4be8 database-connection-manager

Make ltpda_up.retrieve work with java.sql.Connection objects
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +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