Show More
Commit Description:
Calculate entry fees and apply to budget....
Commit Description:
Calculate entry fees and apply to budget.
Incorporate simplistic model of fees.
References:
File last commit:
Show/Diff file:
Action:
FNA/src/Storage/StorageDeviceNotConnectedException.cs
34 lines | 713 B | text/x-csharp | CSharpLexer
34 lines | 713 B | text/x-csharp | CSharpLexer
r0 | #region License | |||
/* FNA - XNA4 Reimplementation for Desktop Platforms | ||||
r690 | * Copyright 2009-2022 Ethan Lee and the MonoGame Team | |||
r0 | * | |||
* Released under the Microsoft Public License. | ||||
* See LICENSE for details. | ||||
*/ | ||||
#endregion | ||||
#region Using Statements | ||||
using System; | ||||
using System.Runtime.InteropServices; | ||||
#endregion | ||||
namespace Microsoft.Xna.Framework.Storage | ||||
{ | ||||
public class StorageDeviceNotConnectedException : ExternalException | ||||
{ | ||||
public StorageDeviceNotConnectedException() | ||||
: base() | ||||
{ | ||||
} | ||||
public StorageDeviceNotConnectedException(string message) | ||||
: base(message) | ||||
{ | ||||
} | ||||
public StorageDeviceNotConnectedException(string message, Exception innerException) | ||||
: base(message, innerException) | ||||
{ | ||||
} | ||||
} | ||||
} | ||||