socket-function 0.107.0 → 0.108.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "socket-function",
3
- "version": "0.107.0",
3
+ "version": "0.108.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -44,7 +44,7 @@ export async function performLocalCall(
44
44
  let controller = classDef.controller;
45
45
  let functionShape = classDef.shape[call.functionName];
46
46
  if (!functionShape) {
47
- throw new Error(`Function ${call.functionName} not exposed`);
47
+ throw new Error(`Function ${call.functionName} not exposed in ${call.classGuid}`);
48
48
  }
49
49
 
50
50
  if (!controller[call.functionName]) {