2014-07-31 21:15:07 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
|
|
|
|
public class MissingFirmwareException : Exception
|
|
|
|
|
{
|
|
|
|
|
public MissingFirmwareException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-01 14:56:23 +00:00
|
|
|
|
|
|
|
|
|
public class UnsupportedMapperException : InvalidOperationException
|
|
|
|
|
{
|
|
|
|
|
public UnsupportedMapperException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CGBNotSupportedException : Exception
|
|
|
|
|
{
|
|
|
|
|
public CGBNotSupportedException()
|
|
|
|
|
: base("Core does not support CGB only games!")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CGBNotSupportedException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-07 00:43:19 +00:00
|
|
|
|
|
|
|
|
|
public class SavestateSizeMismatchException : InvalidOperationException
|
|
|
|
|
{
|
|
|
|
|
public SavestateSizeMismatchException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-31 21:15:07 +00:00
|
|
|
|
}
|