Fixed build error
[platform/core/csapi/push.git] / Tizen.Messaging.Push / Tizen.Messaging.Push / PushExceptionFactory.cs
index 8e6f5b4..eab8197 100755 (executable)
@@ -14,43 +14,43 @@ namespace Tizen.Messaging.Push
             {
                 case Interop.PushClient.ServiceError.OutOfMemory:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.OutOfMemory");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.OutOfMemory");
                     exp = new InvalidOperationException("Memory Not Sufficient for the current operation");
                     break;
                 }
                 case Interop.PushClient.ServiceError.InvalidParameter:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.InvalidParameter");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.InvalidParameter");
                     exp = new InvalidOperationException("The Parameter Passed was Invalid or Invalid Operation Intented");
                     break;
                 }
                 case Interop.PushClient.ServiceError.NotConnected:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.NotConnected");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.NotConnected");
                     exp = new InvalidOperationException("Not Connected to Server");
                     break;
                 }
                 case Interop.PushClient.ServiceError.NoData:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.NoData");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.NoData");
                     exp = new InvalidOperationException("No Data");
                     break;
                 }
                 case Interop.PushClient.ServiceError.OpearationFailed:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.OpearationFailed");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.OpearationFailed");
                     exp = new InvalidOperationException("Operation Failed");
                     break;
                 }
                 case Interop.PushClient.ServiceError.PermissionDenied:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.PermissionDenied");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.PermissionDenied");
                     exp = new InvalidOperationException("Permission Denied");
                     break;
                 }
                 case Interop.PushClient.ServiceError.NotSupported:
                 {
-                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.Push.ServiceError.NotSupported");
+                    Tizen.Log.Error(Interop.PushClient.LogTag, "Interop.PushClient.ServiceError.NotSupported");
                     exp = new InvalidOperationException("Not Supported");
                     break;
                 }