X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FGenBuild%2Forg%2Ftianocore%2Fbuild%2Fpcd%2Faction%2FPcdDatabase.java;h=0460efd9ee5f3416d25fc2084887a2c83f4db198;hp=a42ef927ad8d0cb8a8b2bbd2f95bc5eb6d2a6893;hb=391dbbb1c00daefe78e7e44499d048943ca866ae;hpb=3f7b510edbe3c10b533f36f490e591782d14e929;ds=sidebyside diff --git a/Tools/Source/GenBuild/org/tianocore/build/pcd/action/PcdDatabase.java b/Tools/Source/GenBuild/org/tianocore/build/pcd/action/PcdDatabase.java index a42ef927ad..0460efd9ee 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/pcd/action/PcdDatabase.java +++ b/Tools/Source/GenBuild/org/tianocore/build/pcd/action/PcdDatabase.java @@ -1326,7 +1326,7 @@ public class PcdDatabase { case POINTER: return "UINT8"; default: - throw new EntityException("Unknown type in getDataTypeCDeclaration"); + throw new EntityException("Unknown DatumType in getDataTypeCDeclaration"); } } @@ -1486,7 +1486,7 @@ public class PcdDatabase { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { - throw new EntityException("Fatal error when generating PcdDatabase Common Definitions"); + throw new EntityException("Fatal error when generating PcdDatabase Common Definitions!"); } return retStr; @@ -1509,7 +1509,7 @@ public class PcdDatabase { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { - throw new EntityException("Fatal error when generating PcdDatabase Dxe Definitions"); + throw new EntityException("Fatal error when generating PcdDatabase Dxe Definitions!"); } return retStr; @@ -1532,7 +1532,7 @@ public class PcdDatabase { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { - throw new EntityException("Fatal error when generating PcdDatabase Pei Definitions"); + throw new EntityException("Fatal error when generating PcdDatabase Pei Definitions!"); } return retStr; @@ -1585,7 +1585,7 @@ public class PcdDatabase { if ((uuidString.charAt(0) == '0') && ((uuidString.charAt(1) == 'x') || (uuidString.charAt(1) == 'X'))) { splitStringArray = uuidString.split("," ); if (splitStringArray.length != 11) { - throw new EntityException ("[FPD file error] Wrong format for UUID string: " + uuidString); + throw new EntityException ("[FPD file error] Wrong format for GUID string: " + uuidString); } // @@ -1626,4 +1626,4 @@ public class PcdDatabase { return UUID.fromString(uuidString); } -} \ No newline at end of file +}