Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.MessagePort / Tizen.Applications.Messages / MessagePortErrorFactory.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.Applications.Messages
21 {
22     internal enum MessagePortError
23     {
24         None = ErrorCode.None,
25         IOError = ErrorCode.IoError,
26         OutOfMemory = ErrorCode.OutOfMemory,
27         InvalidParameter = ErrorCode.InvalidParameter,
28         InvalidOperation = ErrorCode.InvalidOperation,
29         PortNotFound = -0x01130000 | 0x01,
30         CertificateNotMatch = -0x01130000 | 0x02,
31         MaxExceeded = -0x01130000 | 0x03,
32         ResourceUnavailable = -0x01130000 | 0x04
33     }
34
35     internal static class MessagePortErrorFactory
36     {
37         internal static void ThrowException(int errorCode, string errorMessage = null, string paramName = null)
38         {
39             MessagePortError err = (MessagePortError)errorCode;
40             if (String.IsNullOrEmpty(errorMessage))
41             {
42                 errorMessage = err.ToString();
43             }
44             switch ((MessagePortError)errorCode)
45             {
46                 case MessagePortError.IOError:
47                 case MessagePortError.OutOfMemory:
48                 case MessagePortError.InvalidOperation:
49                 case MessagePortError.PortNotFound:
50                 case MessagePortError.ResourceUnavailable: throw new InvalidOperationException(errorMessage);
51                 case MessagePortError.InvalidParameter:
52                 case MessagePortError.CertificateNotMatch: throw new ArgumentException(errorMessage, paramName);
53                 case MessagePortError.MaxExceeded: throw new ArgumentOutOfRangeException(paramName, errorMessage);
54             }
55         }
56     }
57 }