view Agendas/trunk/src/Agendas.Blog/Exceptions/BlogNameNotFoundException.cs @ 147:5a1f7233aa5a

Agregando algunos tests
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 17:34:35 -0300
parents 3027c64344bd
children
line wrap: on
line source

using System;

namespace Agendas.Blog.Exceptions
{
  public class BlogNameNotFoundException : Exception
  {
    public BlogNameNotFoundException()
      : base("Key 'PublicadorBlog.BlogName' not found in appSettings")
    {
      
    }
  }
}