mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-05-19 19:39:54 +08:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
|
|
namespace ReactNative.CodePush
|
|
{
|
|
public class CodePushNotInitializedException : Exception
|
|
{
|
|
public CodePushNotInitializedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
} |