标签: ravendb
有没有办法在RavenDb Scripted Patch中显式抛出异常?我可以通过调用null.SomeMethod并使用NullReferenceException作为结果来解决它,但我想抛出一个特定的异常。
null.SomeMethod
答案 0 :(得分:1)
这只是标准的JS:
throw "Too big"; // throw a text throw 500; // throw a number