1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* * Copyright 2013 Jesse Morgan */ package com.p4square.fmfacade.json; /** * * @author Jesse Morgan <jesse@jesterpm.net> */ public class ClientException extends Exception { public ClientException(final String msg) { super(msg); } public ClientException(final String msg, final Exception cause) { super(msg, cause); } }