using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Camera
{
public class CameraException : Exception
{
///
/// 厂商
///
public static string Vendor = "TUCSEN";
///
/// 型号
///
public static string Model = "MIchrome 5 Pro";
}
public class NotSupportException : CameraException
{
}
public class NotSupportRotateException : NotSupportException
{
public int Rotate { get; private set; }
public NotSupportRotateException(int value)
{
Rotate = value;
}
}
}