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