'System/Collections/Generic/KeyNotFoundException.ab Namespace System Namespace Collections Namespace Generic Class KeyNotFoundException Inherits System.SystemException Public /*! @biref コンストラクタ */ Sub KeyNotFoundException() SystemException(GetType().FullName, Nothing) HResult = ActiveBasic.AB_E_KEYNOTFOUND End Sub /*! @biref コンストラクタ @param[in] message エラーメッセージ */ Sub KeyNotFoundException(message As String) SystemException(message, Nothing) HResult = ActiveBasic.AB_E_KEYNOTFOUND End Sub /*! @biref コンストラクタ @param[in] message エラーメッセージ @param[in] innerException 内部例外 */ Sub KeyNotFoundException(message As String, innerException As Exception) SystemException(message, innerException) HResult = ActiveBasic.AB_E_KEYNOTFOUND End Sub End Class End Namespace End Namespace End Namespace