Files
react-native-code-push/windows/CodePushInvalidUpdateException.cs
Geoffrey Goh 97b8233d26 CR feedback
2016-05-04 18:26:33 -07:00

13 lines
239 B
C#

using System;
namespace CodePush.ReactNative
{
internal class CodePushInvalidUpdateException : Exception
{
internal CodePushInvalidUpdateException(string message)
: base(message)
{
}
}
}