Back to project page Android-CleanArchitecture.
The source code is released under:
Apache License
If you think the Android project Android-CleanArchitecture listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2014 android10.org. All rights reserved. * @author Fernando Cejas (the android10 coder) */// ww w . j a v a2s . c o m package com.fernandocejas.android10.sample.domain.exception; /** * Interface to represent a wrapper around an {@link java.lang.Exception} to manage errors. */ public interface ErrorBundle { Exception getException(); String getErrorMessage(); }