package com.think.uiloader.data.exception; /** * Created by borney on 2/23/17. */ public class NotFoundException extends RuntimeException { public NotFoundException(String msg) { super(msg); } }