Revision: | 88 |
Committed: | Wed May 9 20:52:20 2012 UTC (11 years ago) by william |
File size: | 499 byte(s) |
Log Message: |
# | User | Rev | Content |
---|---|---|---|
1 | william | 88 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace libWin32.Win32.Exceptions | ||
6 | { | ||
7 | public class UnimplimentedDirectXScanCodeException : Exception | ||
8 | { | ||
9 | public UnimplimentedDirectXScanCodeException() : this("") { } | ||
10 | public UnimplimentedDirectXScanCodeException(string message) : this(message, null) { } | ||
11 | public UnimplimentedDirectXScanCodeException(string message, Exception innerexception) : base(message, innerexception) { } | ||
12 | } | ||
13 | } |