@@ -72,7 +72,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
7272 return this . buildMetadata ( metadataEntry ) ;
7373 } ) ;
7474 } ) ,
75- catchError ( ( error ) => throwError ( error ) ) ,
75+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
7676 ) ;
7777 }
7878
@@ -91,7 +91,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
9191 return this . buildMetadata ( metadataEntry ) ;
9292 } ) ;
9393 } ) ,
94- catchError ( ( error ) => throwError ( error ) ) ,
94+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
9595 ) ;
9696 }
9797
@@ -109,7 +109,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
109109 const metadataDTO = response . body ;
110110 return this . buildMetadata ( metadataDTO ) ;
111111 } ) ,
112- catchError ( ( error ) => throwError ( error ) ) ,
112+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
113113 ) ;
114114 }
115115
@@ -131,7 +131,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
131131 return this . buildMetadata ( metadataEntry ) ;
132132 } ) ;
133133 } ) ,
134- catchError ( ( error ) => throwError ( error ) ) ,
134+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
135135 ) ;
136136 }
137137
@@ -150,7 +150,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
150150 return this . buildMetadata ( metadataEntry ) ;
151151 } ) ;
152152 } ) ,
153- catchError ( ( error ) => throwError ( error ) ) ,
153+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
154154 ) ;
155155 }
156156
@@ -168,7 +168,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
168168 const metadataDTO = response . body ;
169169 return this . buildMetadata ( metadataDTO ) ;
170170 } ) ,
171- catchError ( ( error ) => throwError ( error ) ) ,
171+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
172172 ) ;
173173 }
174174
@@ -190,7 +190,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
190190 return this . buildMetadata ( metadataEntry ) ;
191191 } ) ;
192192 } ) ,
193- catchError ( ( error ) => throwError ( error ) ) ,
193+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
194194 ) ;
195195 }
196196
@@ -209,7 +209,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
209209 return this . buildMetadata ( metadataEntry ) ;
210210 } ) ;
211211 } ) ,
212- catchError ( ( error ) => throwError ( error ) ) ,
212+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
213213 ) ;
214214 }
215215
@@ -227,7 +227,7 @@ export class MetadataHttp extends Http implements MetadataRepository {
227227 const metadataDTO = response . body ;
228228 return this . buildMetadata ( metadataDTO ) ;
229229 } ) ,
230- catchError ( ( error ) => throwError ( error ) ) ,
230+ catchError ( ( error ) => throwError ( this . errorHandling ( error ) ) ) ,
231231 ) ;
232232 }
233233
0 commit comments