Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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)
- {}
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement