package no.uio.ifi.refaktor.utils.nullobjects; public class UnsupportedNullObjectOperationException extends UnsupportedOperationException { private static final long serialVersionUID = 8527068039950662392L; public UnsupportedNullObjectOperationException(Class nullObjectClass) { super(nullObjectClass.toString()); } }