• Sign in

Open Source / youtrack rest api · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • youtrack-rest-api
  • ..
  • exceptions
  • YoutrackAPIException.java
  • Code rearrange and reformat.
    8f984e42
    bernard authored
    2013-04-04 13:12:45 +0000  
    Browse File »
YoutrackAPIException.java 240 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package pl.itcrowd.youtrack.api.exceptions;

public class YoutrackAPIException extends RuntimeException {

    public YoutrackAPIException()
    {
    }

    public YoutrackAPIException(String message)
    {
        super(message);
    }
}