ADD ClipController for clip retrieval

This commit is contained in:
2025-07-09 21:57:23 +02:00
parent 130938c56a
commit a78aecdfb6
7 changed files with 79 additions and 11 deletions

View File

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