From: <kon...@us...> - 2010-09-07 19:26:55
|
Revision: 1133 http://cishell.svn.sourceforge.net/cishell/?rev=1133&view=rev Author: kongchinhua Date: 2010-09-07 19:26:49 +0000 (Tue, 07 Sep 2010) Log Message: ----------- Customized exception handling for Null value support. Added Paths: ----------- trunk/core/org.cishell.utilities/src/org/cishell/utilities/NullValueSupportException.java Added: trunk/core/org.cishell.utilities/src/org/cishell/utilities/NullValueSupportException.java =================================================================== --- trunk/core/org.cishell.utilities/src/org/cishell/utilities/NullValueSupportException.java (rev 0) +++ trunk/core/org.cishell.utilities/src/org/cishell/utilities/NullValueSupportException.java 2010-09-07 19:26:49 UTC (rev 1133) @@ -0,0 +1,14 @@ +package org.cishell.utilities; + +/** + * Customized exception handling for Null value support. + * @author kongch + * + */ +public class NullValueSupportException extends RuntimeException { + private static final long serialVersionUID = 1L; + + public NullValueSupportException(String message, Exception e) { + super(message, e); + } +} Property changes on: trunk/core/org.cishell.utilities/src/org/cishell/utilities/NullValueSupportException.java ___________________________________________________________________ Added: svn:mime-type + text/plain This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |