package plp.collection; class AVLException extends Exception { private AVL avl; AVLException(AVL avl) { this.avl = avl; } public AVL avl() { return avl; } }