view Agendas/trunk/src/Agendas.Blog/Exceptions/PostWriterServiceUrlNotFoundException.cs @ 123:f8568f01da4d

Mejorando los mensajes en Twitter
author nelopauselli
date Tue, 28 Jun 2011 20:53:30 -0300
parents 3027c64344bd
children
line wrap: on
line source

using System;

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