/** * Copyright (C) 2014-2016 Open Whisper Systems * * Licensed according to the LICENSE file in this repository. */ package org.whispersystems.signalservice.api.push.exceptions; public class NotFoundException extends NonSuccessfulResponseCodeException { public NotFoundException(String s) { super(s); } }