Se añade descripción del error cuando aparece "Error al construir la colección"

This commit is contained in:
Sergio De la torre 2021-11-18 07:08:55 +01:00
parent a16a6b1957
commit 1f6a4278a9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ fun CollectionVO.map() : CollectionVO{
if (this.tickets == null || this.tickets.isEmpty()){
this.errorMessage = "La colección no tiene tickets"
}else{
this.errorMessage = "Error al construir la colección"
this.errorMessage = "Error al construir la colección. Descripción del error:"+ e.message.toString()
}
}