view Agendas/trunk/src/Agendas.Blog/Exceptions/PostWriterServiceUrlNotFoundException.cs @ 105:1d820f17fc75

ajustes y correcciones en el publicador de blogs agregado de numeroOrden y urlWiki en metodo Publicar de Agenda y Evento (con test)
author jorge.rowies
date Mon, 06 Jun 2011 09:12:52 -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")
    {
    }
  }
}