[Quantproject-developers] QuantProject/b1_ADT IndexOfKeyOrPreviousException.cs,NONE,1.1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-05-26 22:55:07
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18731/b1_ADT Added Files: IndexOfKeyOrPreviousException.cs Log Message: Exception thrown when the key to find is less than the first object --- NEW FILE: IndexOfKeyOrPreviousException.cs --- using System; using System.Windows.Forms; namespace QuantProject.ADT { /// <summary> /// Exception thrown when the key to find is less than the first object /// </summary> public class IndexOfKeyOrPreviousException : Exception { public IndexOfKeyOrPreviousException( IComparable firstKeyInTheAdvancedSortedList , Object key ) { string message = "The given key is less than the first object " + "in the AdvancedSortedList"; message = message; // MessageBox.Show( this.message ); } } } |