Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 11, 2014 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/62535a8cd326af659bcd to your computer and use it in GitHub Desktop.
Save Fhernd/62535a8cd326af659bcd to your computer and use it in GitHub Desktop.
Definición de la excepción LoginFalloException.
using System;
using System.Runtime.Serialization;
namespace Articulos.Cap04.Excepciones.Parte3
{
[Serializable]
public class LoginFalloException : Exception
{
// Constructores
public LoginFalloException () : base ()
{}
public LoginFalloException (string message) : base (message)
{}
public LoginFalloException (string message, Exception innerException)
: base (message, innerException)
{}
public LoginFalloException (SerializationInfo info, StreamingContext context)
: base (info, context)
{}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment