wordpress check if class exists

if ( class_exists( 'MyClassName' ) ) {
    // The class 'MyClassName' exists
} else {
    // The class 'MyClassName' doesn't exist
}