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

12 lines
239 B
C#

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