Skip to content

Commit 0e6c026

Browse files
Eliminates try/catch
1 parent fb913af commit 0e6c026

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

lib/experimental/fonts/font-library/class-wp-font-collection.php

+13-4
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,29 @@ class WP_Font_Collection {
3636
*
3737
* @param string $id Font collection id.
3838
* @param array $config Font collection config options.
39-
* @throws Exception If the required parameters are missing.
39+
* @throws WP_Error When passed an invalid argument.
4040
*/
4141
public function __construct( $id, $config ) {
4242

4343
if ( empty( $id ) && is_string( $id ) ) {
44-
throw new Exception( 'Font Collection ID is required as a non-empty string.' );
44+
return new WP_Error(
45+
'font_collection_id_required',
46+
__( 'Font Collection ID is required as a non-empty string.', 'gutenberg' )
47+
);
4548
}
4649

4750
if ( empty( $config ) ) {
48-
throw new Exception( 'Font Collection config options is required as a non-empty array.' );
51+
return new WP_Error(
52+
'font_collection_config_required',
53+
__( 'Font Collection config options is required as a non-empty array.', 'gutenberg' )
54+
);
4955
}
5056

5157
if ( empty( $config['data_json_file'] ) && is_string( $config['data_json_file'] ) ) {
52-
throw new Exception( 'Font Collection config "data_json_file" option is required as a non-empty string.' );
58+
return new WP_Error(
59+
'font_collection_data_json_file_required',
60+
__( 'Font Collection config "data_json_file" option is required as a non-empty string.', 'gutenberg' )
61+
);
5362
}
5463

5564
$config['id'] = $id;

lib/experimental/fonts/font-library/class-wp-font-library.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ public static function register_font_collection( $id, $config ) {
5050
return new WP_Error( 'font_collection_registration_error', 'Font collection already registered.' );
5151
}
5252

53-
try {
54-
$new_collection = new WP_Font_Collection( $id, $config );
55-
self::$collections[ $id ] = $new_collection;
53+
$new_collection = new WP_Font_Collection( $id, $config );
54+
if ( is_wp_error( $new_collection ) ) {
5655
return $new_collection;
57-
} catch ( Exception $e ) {
58-
return new WP_Error( 'font_collection_error', $e->getMessage() );
5956
}
57+
58+
self::$collections[ $id ] = $new_collection;
59+
return $new_collection;
6060
}
6161

6262
/**

0 commit comments

Comments
 (0)