RealTimeTalk/app/src/main/java/com/smarthomies/realtimetalk/network/exceptions/UnauthorizedException.java

16 lines
366 B
Java
Raw Normal View History

2016-12-07 01:14:08 +00:00
package com.smarthomies.realtimetalk.network.exceptions;
/**
* Created by ensar on 14/11/16.
*/
public class UnauthorizedException extends APIException {
public static final String TAG = UnauthorizedException.class.getSimpleName();
public UnauthorizedException(Throwable cause) {
super(cause);
}
public UnauthorizedException() {
}
}