bernard
authored
|
1
|
package pl.itcrowd.youtrack.api.exceptions;
|
bernard
authored
|
2
3
4
|
public class NoResultFoundException extends RuntimeException {
|
bernard
authored
|
5
|
public NoResultFoundException(String message, Throwable cause)
|
bernard
authored
|
6
|
{
|
bernard
authored
|
7
|
super(message, cause);
|
bernard
authored
|
8
9
|
}
}
|