Skip to content

Instantly share code, notes, and snippets.

@botmtl
Created August 29, 2016 00:46
Show Gist options
  • Save botmtl/f2123b55168f03034d797e28d940e46a to your computer and use it in GitHub Desktop.
Save botmtl/f2123b55168f03034d797e28d940e46a to your computer and use it in GitHub Desktop.
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