diff --git a/RQL/RESTProvider.vb b/RQL/RESTProvider.vb index 93a6b60..d5b4186 100644 --- a/RQL/RESTProvider.vb +++ b/RQL/RESTProvider.vb @@ -144,4 +144,8 @@ Public Class RESTProvider : Inherits HttpServer Public Overrides Sub handleOtherMethod(p As HttpProcessor) End Sub + + Public Overrides Sub handlePUTMethod(p As HttpProcessor, inputData As MemoryStream) + Throw New NotImplementedException() + End Sub End Class