Make DrmSessionException constructor public to enable creating custom DrmSessionManager implementations.

This commit is contained in:
Johannes Schamburger 2017-02-16 17:05:12 +01:00
parent 65d4b1cf5c
commit f8bb329ef2

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);
}