aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
blob: 2f03d13ab66b4ac57c0f7534d8a7dd37a603c2cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Runtime.CompilerServices;

namespace Ryujinx.HLE.Exceptions
{
    public class InvalidStructLayoutException<T> : Exception 
    {
        static readonly Type _structType = typeof(T);

        public InvalidStructLayoutException(string message) : base(message) { }
        
        public InvalidStructLayoutException(int expectedSize)
            : base($"Type {_structType.Name} has the wrong size. Expected: {expectedSize} bytes, got: {Unsafe.SizeOf<T>()} bytes") { }
    }
}