Skip to content

Instantly share code, notes, and snippets.

@gabanox
Created October 17, 2014 17:39
Show Gist options
  • Save gabanox/4b12a64b0f42b231f98a to your computer and use it in GitHub Desktop.
Save gabanox/4b12a64b0f42b231f98a to your computer and use it in GitHub Desktop.
package com.telcel.repository;
import org.springframework.stereotype.Repository;
@Repository
public class MyRepository {
public void doIt() {
}
public void throwsException() {
throw new RuntimeException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment