Skip to content

Instantly share code, notes, and snippets.

@ashutoshraina
Created February 2, 2013 11:46
Show Gist options
  • Save ashutoshraina/4696965 to your computer and use it in GitHub Desktop.
Save ashutoshraina/4696965 to your computer and use it in GitHub Desktop.
UnitOfWorkException
using System;
namespace EFRepository.Infrastructure
{
[Serializable]
public class UnitOfWorkException : Exception
{
public override string Message
{
get
{
return "The parameter must be EFUnitOfWork";
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment