AlreadyExistsException.java org::apache::iceberg::exceptions::AlreadyExistsException org::apache::iceberg::exceptions /* *LicensedtotheApacheSoftwareFoundation(ASF)underone *ormorecontributorlicenseagreements.SeetheNOTICEfile *distributedwiththisworkforadditionalinformation *regardingcopyrightownership.TheASFlicensesthisfile *toyouundertheApacheLicense,Version2.0(the *"License");youmaynotusethisfileexceptincompliance *withtheLicense.YoumayobtainacopyoftheLicenseat * *http://www.apache.org/licenses/LICENSE-2.0 * *Unlessrequiredbyapplicablelaworagreedtoinwriting, *softwaredistributedundertheLicenseisdistributedonan *"ASIS"BASIS,WITHOUTWARRANTIESORCONDITIONSOFANY *KIND,eitherexpressorimplied.SeetheLicenseforthe *specificlanguagegoverningpermissionsandlimitations *undertheLicense. */ packageorg.apache.iceberg.exceptions; importcom.google.errorprone.annotations.FormatMethod; publicclassAlreadyExistsExceptionextendsRuntimeException{ @FormatMethod publicAlreadyExistsException(Stringmessage,Object...args){ super(String.format(message,args)); } @FormatMethod publicAlreadyExistsException(Throwablecause,Stringmessage,Object...args){ super(String.format(message,args),cause); } }