Merge pull request #2464 from jschamburger/dev-v2

Make DrmSessionException constructor public to enable creating custom DrmSessionManager implementations.
This commit is contained in:
ojw28 2017-02-16 17:22:01 +00:00 committed by GitHub
commit 26f4e528d5

View file

@ -31,7 +31,7 @@ public interface DrmSession<T extends ExoMediaCrypto> {
/** Wraps the exception which is the cause of the error state. */
class DrmSessionException extends Exception {
DrmSessionException(Exception e) {
public DrmSessionException(Exception e) {
super(e);
}