ExceptionLogService.java 281 B

12345678910111213
  1. package com.izouma.nineth.service;
  2. import com.izouma.nineth.repo.ExceptionLogRepo;
  3. import lombok.AllArgsConstructor;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. @AllArgsConstructor
  7. public class ExceptionLogService {
  8. private ExceptionLogRepo exceptionLogRepo;
  9. }