Server done

This commit is contained in:
Robert-Ciubotaru
2023-06-04 21:38:08 +03:00
committed by GitHub
parent 7fe74e900a
commit fc628686d2
77 changed files with 2427 additions and 0 deletions
@@ -0,0 +1,7 @@
package com.andreicerbu.exceptions;
public class ProcessDoneException extends Exception{
public ProcessDoneException(String message){
super(message);
}
}