123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.Camera
- {
- public class CameraException : Exception
- {
- /// <summary>
- /// 厂商
- /// </summary>
- public static string Vendor = "TUCSEN";
- /// <summary>
- /// 型号
- /// </summary>
- 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;
- }
- }
- }
|