Revision: | 88 |
Committed: | Wed May 9 20:52:20 2012 UTC (11 years, 4 months ago) by william |
File size: | 499 byte(s) |
Log Message: |
# | Content |
---|---|
1 | 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 | } |