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

16 lines
346 B
Java

package com.smarthomies.realtimetalk.network.exceptions;
/**
* Created by ensar on 01/11/16.
*/
public class NetworkException extends APIException {
public static final String TAG = NetworkException.class.getSimpleName();
public NetworkException() {
}
public NetworkException(Throwable cause) {
super(cause);
}
}