Spring Boot - Advanced Patterns
Identify the error in this Spring Boot repository interface following enterprise patterns:
public interface UserRepository {
User findById(int id);
}