package androidx.appcompat.view.menu; /* loaded from: classes.dex */ class BaseWrapper { final T a; BaseWrapper(T t) { if (t == null) { throw new IllegalArgumentException("Wrapped Object can not be null."); } this.a = t; } }