using System; namespace Excepciones { /// /// Summary description for Excepcion. /// public class osException : Exception { private string _mensaje =""; public string Mensaje { get { return this._mensaje;} } public osException(string msg):base() { _mensaje=msg; } } }