Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Remoting / ScreenMirroring / ScreenMirroringError.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using Tizen.Internals.Errors;
19
20 namespace Tizen.Multimedia
21 {
22     internal enum ScreenMirroringErrorCode
23     {
24         None = ErrorCode.None,
25         InvalidParameter = ErrorCode.InvalidParameter,
26         OutOfMemory = ErrorCode.OutOfMemory,
27         InvalidOperation = ErrorCode.InvalidOperation,
28         ConnectionTimeOut = ErrorCode.ConnectionTimeout,
29         PermissionDenied = ErrorCode.PermissionDenied,
30         NotSupported = ErrorCode.NotSupported,
31         Unknown = ErrorCode.Unknown
32     }
33
34     internal static class ScreenMirroringErrorExtensions
35     {
36         internal static void ThrowIfError(this ScreenMirroringErrorCode err, string message)
37         {
38             if (err == ScreenMirroringErrorCode.None)
39             {
40                 return;
41             }
42
43             switch (err)
44             {
45                 case ScreenMirroringErrorCode.InvalidParameter:
46                     throw new ArgumentException(message);
47
48                 case ScreenMirroringErrorCode.OutOfMemory:
49                     throw new OutOfMemoryException(message);
50
51                 case ScreenMirroringErrorCode.PermissionDenied:
52                     throw new UnauthorizedAccessException(message);
53
54                 case ScreenMirroringErrorCode.NotSupported:
55                     throw new NotSupportedException(message);
56
57                 case ScreenMirroringErrorCode.InvalidOperation:
58                     throw new InvalidOperationException(message);
59
60                 case ScreenMirroringErrorCode.ConnectionTimeOut:
61                     throw new TimeoutException(message);
62
63                 default:
64                     throw new InvalidOperationException($"Unknown error : {err.ToString()}.");
65             }
66         }
67     }
68 }
69