Check if the user has explicitly set an excerpt

Try this:

if ( has_excerpt( $some_post_id ) ) {
    // Do something here?
} else {
    // Or here?
}

References:

Leave a Comment