singrdk/base/Kernel/Singularity/Loader/BadImageFormatException.cs

25 lines
573 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
//
// Simple PE Loader for Singularity
//
namespace Microsoft.Singularity.Loader
{
using System;
internal class BadImageFormatException : SystemException
{
internal BadImageFormatException(String reason)
: base(reason)
{
}
}
}