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

12 lines
241 B
C#

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