Advertisement
Fhernd

LoginFalloException.cs

Jul 11th, 2014
3,591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.65 KB | None | 0 0
  1. using System;
  2. using System.Runtime.Serialization;
  3.  
  4. namespace Articulos.Cap04.Excepciones.Parte3
  5. {
  6.     [Serializable]
  7.     public class LoginFalloException : Exception
  8.     {
  9.         // Constructores
  10.         public LoginFalloException () : base ()
  11.         {}
  12.        
  13.         public LoginFalloException (string message) : base (message)
  14.         {}
  15.        
  16.         public LoginFalloException (string message, Exception innerException)
  17.             : base (message, innerException)
  18.         {}
  19.        
  20.         public LoginFalloException (SerializationInfo info,  StreamingContext context)
  21.             : base (info, context)
  22.         {}
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement