ADD download functionality

This commit is contained in:
2025-05-11 14:56:22 +02:00
parent 3ec9f26264
commit 518a1f3f9f
4 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.ddf.vodsystem.exceptions;
public class JobNotFinished extends RuntimeException {
public JobNotFinished(String message) {
super(message);
}
}

View File

@@ -0,0 +1,7 @@
package com.ddf.vodsystem.exceptions;
public class JobNotFound extends RuntimeException {
public JobNotFound(String message) {
super(message);
}
}