File: System\Reflection\Metadata\ImageFormatLimitationException.cs
Web Access
Project: src\src\libraries\System.Reflection.Metadata\src\System.Reflection.Metadata.csproj (System.Reflection.Metadata)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Reflection.Metadata.Ecma335;
 
namespace System.Reflection.Metadata
{
    public partial class ImageFormatLimitationException : Exception
    {
        public ImageFormatLimitationException()
            : base()
        {
        }
 
        public ImageFormatLimitationException(string? message)
            : base(message)
        {
        }
 
        public ImageFormatLimitationException(string? message, Exception? innerException)
            : base(message, innerException)
        {
        }
    }
}