Back to project page Paginize.
The source code is released under:
Copyright (c) 2014 neevek <i at neevek.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal ...
If you think the Android project Paginize listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.neevek.android.lib.paginize.exception; /*from w ww. ja v a 2s . c o m*/ /** * Created by neevek on 12/27/13. */ public class InjectFailedException extends RuntimeException { public InjectFailedException(String msg) { super(msg); } public InjectFailedException(Throwable throwable) { super(throwable); } public InjectFailedException() { super(); } }