| 12345678910111213141516171819 |
- using System;
- using Quadarax.Foundation.Core.Exceptions;
- namespace BO.AppServer.Business.Exceptions
- {
- public class NoDataException : CodeException
- {
- private const string CS_MESSAGE = "No data returns but not expected.";
- private const int CN_CODE = 1099;
- public NoDataException(Exception innerException) : base(CN_CODE, CS_MESSAGE)
- {
- }
- public NoDataException() : base(CN_CODE, CS_MESSAGE)
- {
- }
- }
- }
|