using System; using System.Collections.Generic; using System.Text; namespace DirectUSB { class DirectUSBException : Exception { #region Constructors / Teardown public DirectUSBException(string message) : base(message) { } public DirectUSBException(string message, Exception inner) : base(message, inner) { } #endregion } }