OSDN Git Service

Merge branch 'feature/37178_プロジェクトとソリューションファイルの英語化' into develop
[dtxmania/dtxmania.git] / FDK17プロジェクト / コード / 01.フレームワーク / Rendering / NoCompatibleDevicesException.cs
diff --git a/FDK17プロジェクト/コード/01.フレームワーク/Rendering/NoCompatibleDevicesException.cs b/FDK17プロジェクト/コード/01.フレームワーク/Rendering/NoCompatibleDevicesException.cs
deleted file mode 100644 (file)
index ffa4478..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-/*\r
-* Copyright (c) 2007-2009 SlimDX Group\r
-* \r
-* Permission is hereby granted, free of charge, to any person obtaining a copy\r
-* of this software and associated documentation files (the "Software"), to deal\r
-* in the Software without restriction, including without limitation the rights\r
-* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
-* copies of the Software, and to permit persons to whom the Software is\r
-* furnished to do so, subject to the following conditions:\r
-* \r
-* The above copyright notice and this permission notice shall be included in\r
-* all copies or substantial portions of the Software.\r
-* \r
-* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
-* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
-* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
-* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
-* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
-* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
-* THE SOFTWARE.\r
-*/\r
-using System;\r
-using System.Runtime.Serialization;\r
-\r
-namespace SampleFramework\r
-{\r
-    /// <summary>\r
-    /// Thrown when no available graphics device fits the given device preferences.\r
-    /// </summary>\r
-    [Serializable]\r
-    public class NoCompatibleDevicesException : Exception\r
-    {\r
-        /// <summary>\r
-        /// Initializes a new instance of the <see cref="NoCompatibleDevicesException"/> class.\r
-        /// </summary>\r
-        public NoCompatibleDevicesException()\r
-        {\r
-        }\r
-\r
-        /// <summary>\r
-        /// Initializes a new instance of the <see cref="NoCompatibleDevicesException"/> class.\r
-        /// </summary>\r
-        /// <param name="message">The message.</param>\r
-        public NoCompatibleDevicesException(string message)\r
-            : base(message)\r
-        {\r
-        }\r
-\r
-        /// <summary>\r
-        /// Initializes a new instance of the <see cref="NoCompatibleDevicesException"/> class.\r
-        /// </summary>\r
-        /// <param name="message">The message.</param>\r
-        /// <param name="innerException">The inner exception.</param>\r
-        public NoCompatibleDevicesException(string message, Exception innerException)\r
-            : base(message, innerException)\r
-        {\r
-        }\r
-\r
-        /// <summary>\r
-        /// Initializes a new instance of the <see cref="NoCompatibleDevicesException"/> class.\r
-        /// </summary>\r
-        /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
-        /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
-        /// <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
-        /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
-        protected NoCompatibleDevicesException(SerializationInfo info, StreamingContext context)\r
-            : base(info, context)\r
-        {\r
-        }\r
-    }\r
-}\r