Files
react-native-code-push/windows/CodePushNotInitializedException.cs
Geoffrey Goh 15cd39c732 update API
2016-04-12 14:42:16 -07:00

12 lines
229 B
C#

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