// ===============================================================================
// AyA Corp. - 2006 ExceptionManager
//
// ExceptionManagerEnums.cs
//
// This file contains the implementations of the ExceptionManagerEnums
// ===============================================================================
// History
// Date Description
// April
//
// ===============================================================================
// Copyright (C) 2005-2006 AyA Corp.
// All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
// FITNESS FOR A PARTICULAR PURPOSE.
// ==============================================================================
using System;
namespace AyAEM.ExceptionManagement
{
///
/// Exception codes enumeration
///
#region Enums
public enum ExceptionCode
{
///
/// SQL Clauses enumeration
///
///
///
///
///
AyAEM000,
AyAEM001,
AyAEM002,
AyAEM003,
AyAEM004,
AyAEM005,
AyAEM006
}
#endregion
///
/// DataEnums Class.
/// Contains differents codes for every AyA Exception
///
public class ExceptionManagerEnums
{
#region Attributes
#endregion
#region Constructors
public ExceptionManagerEnums()
{
}
#endregion
#region Properties
#endregion
}
}