Skip to content

Commit

Permalink
Refactoring of service module
Browse files Browse the repository at this point in the history
  • Loading branch information
jschm42 committed Nov 30, 2023
1 parent 3cc10d4 commit c2af3ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
* limitations under the License.
*/

package com.talkforgeai.backend.assistant.exceptions;
package com.talkforgeai.backend.assistant.exception;

public class AssistentException extends RuntimeException {
public AssistentException(String message) {
super(message);
}

public AssistentException(String message, Throwable cause) {
super(message, cause);
}
public AssistentException(String message) {
super(message);
}

public AssistentException(String message, Throwable cause) {
super(message, cause);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import com.talkforgeai.backend.assistant.dto.ThreadDto;
import com.talkforgeai.backend.assistant.dto.ThreadTitleDto;
import com.talkforgeai.backend.assistant.dto.ThreadTitleRequestDto;
import com.talkforgeai.backend.assistant.exceptions.AssistentException;
import com.talkforgeai.backend.assistant.exception.AssistentException;
import com.talkforgeai.backend.assistant.repository.AssistantRepository;
import com.talkforgeai.backend.assistant.repository.MessageRepository;
import com.talkforgeai.backend.assistant.repository.ThreadRepository;
Expand Down

0 comments on commit c2af3ef

Please sign in to comment.