28 lines
549 B
C#
28 lines
549 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Microsoft.Xna.Framework.Graphics
|
|
{
|
|
[DataContract]
|
|
public sealed class NoSuitableGraphicsDeviceException : Exception
|
|
{
|
|
public NoSuitableGraphicsDeviceException()
|
|
: base()
|
|
{
|
|
|
|
}
|
|
|
|
public NoSuitableGraphicsDeviceException(string message)
|
|
: base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public NoSuitableGraphicsDeviceException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|