Created
August 29, 2016 00:46
-
-
Save botmtl/f2123b55168f03034d797e28d940e46a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace DeviceManagementModule | |
{ | |
public class DeviceNotFoundException : Exception | |
{ | |
public DeviceNotFoundException() | |
{ | |
} | |
public DeviceNotFoundException(string message) | |
: base(message) | |
{ | |
} | |
public DeviceNotFoundException(string message, Exception innerException) | |
: base(message, innerException) | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment