diff --git a/src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java b/src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
index b42dce486016af75f258d0434b4c33304331f354..99ed6a2970dab9369927b169fa7fe8018a34080f 100644
--- a/src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
+++ b/src/main/java/org/caosdb/server/grpc/ServerSideScriptingServiceImpl.java
@@ -240,9 +240,43 @@ public class ServerSideScriptingServiceImpl extends ServerSideScriptingServiceIm
           new StatusException(Status.NOT_FOUND.withDescription(description).withCause(e)));
       return;
     }
-    // TODO: SERVER_SIDE_DOES_NOT_EXIST, SERVER_SIDE_SCRIPT_NOT_EXECUTABLE,
-    // SERVER_SIDE_SCRIPT_ERROR, SERVER_SIDE_SCRIPT_SETUP_ERROR,
-    // SERVER_SIDE_SCRIPT_TIMEOUT, SERVER_SIDE_SCRIPT_MISSING_CALL
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_DOES_NOT_EXIST)
+    {
+      responseObserver.onError(
+          new StatusException(Status.NOT_FOUND.withDescription(description).withCause(e)));
+      return;
+    }
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_NOT_EXECUTABLE)
+    {
+      responseObserver.onError(
+          new StatusException(Status.PERMISSION_DENIED.withDescription(description).withCause(e)));
+      return;
+    }
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_ERROR)
+    {
+      responseObserver.onError(
+          new StatusException(Status.UNKNOWN.withDescription(description).withCause(e)));
+      return;
+    }
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_SETUP_ERROR)
+    {
+      responseObserver.onError(
+          new StatusException(Status.UNKNOWN.withDescription(description).withCause(e)));
+      return;
+    }
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_TIMEOUT)
+    {
+      responseObserver.onError(
+          new StatusException(Status.DEADLINE_EXCEEDED.withDescription(description).withCause(e)));
+      return;
+    }
+    else if (e == ServerMessages.SERVER_SIDE_SCRIPT_MISSING_CALL)
+    {
+      responseObserver.onError(
+          new StatusException(Status.INVALID_ARGUMENT.withDescription(description).withCause(e)));
+      return;
+    }
+    
     e.printStackTrace();
     responseObserver.onError(
         new StatusException(Status.UNKNOWN.withDescription(description).withCause(e)));