Re: Creating a Kotlin Commons Lang Package

2020-08-17 Thread Adwait Kumar Singh
ng.org/docs/reference/java-interop.html to call the Java > methods from Kotlin? Or am I missing something? -- H > > On Mon, 17 Aug 2020 at 17:45, Miguel Muñoz wrote: > > > I'd be happy to join you. > > > > On Mon, Aug 17, 2020 at 5:24 AM Adwait Kumar Singh < > >

Creating a Kotlin Commons Lang Package

2020-08-17 Thread Adwait Kumar Singh
Hi all, I created this issue https://issues.apache.org/jira/browse/LANG-1599 to discuss the possibility of creating a Kotlin version of the current project which would leverage extension functions to provide cleaner and concise utility functions. Also we would only include those methods which are

Re: Proposal for creating a CompositeException in ExceptionUtils

2020-07-17 Thread Adwait Kumar Singh
, Jul 17, 2020 at 10:06 PM sebb wrote: > What is the use case for this? > > On Fri, 17 Jul 2020 at 16:29, Adwait Kumar Singh > wrote: > > > > Yes Gary, something similar. However it would differ from IOExceptionList > > which creates an aggregated message o

Re: Proposal for creating a CompositeException in ExceptionUtils

2020-07-17 Thread Adwait Kumar Singh
veX/RxJava/blob/3.x/src/main/java/io/reactivex/rxjava3/exceptions/CompositeException.java> On Fri, Jul 17, 2020 at 8:44 PM Gary Gregory wrote: > Would it be like Common IO's IOExceptionList or Commons DBCP > SQLExceptionList ? > > Gary > > On Fri, Jul 17, 2020 at 11:01 A

Re: Proposal for creating a CompositeException in ExceptionUtils

2020-07-17 Thread Adwait Kumar Singh
at 5:18 PM Adwait Kumar Singh < theadvaitkumarsi...@gmail.com> wrote: > Hi Commons devs, > > Use case : Ability to a single exceptions with multiple causes. This > required in validation or initialization scenarios for example when I want > to Validation/Initialization

Proposal for creating a CompositeException in ExceptionUtils

2020-07-17 Thread Adwait Kumar Singh
Hi Commons devs, Use case : Ability to a single exceptions with multiple causes. This required in validation or initialization scenarios for example when I want to Validation/Initialization failures for multiple reasons and each reason having a unique cause. RxJava provides something similar