You may see a lot of @SuppressWarnings("unchecked") in some open source Java code.
It is used to get rid of the unchecked warnings. "The 'unchecked' warning can occur when interfacing with legacy code written before the advent of generics (discussed in the lesson titled Generics)."
Up to what I know this warning has no relationship with the unchecked exceptions.