ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/Exceptions/UnimplimentedDirectXScanCodeException.cs
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:

File Contents

# 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 }