Skip to content

Commit f0525cc

Browse files
author
Jamil Maqdis Anton
committed
Rename ExceptionHandler.fs to ExceptionsHandler.fs
1 parent 40c6c2d commit f0525cc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Append.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ module Append =
99
(messageDetails: MessageDetails)
1010
: Async<Result<AppendResult, string>> =
1111
AppendRaw.appendNewMessage store streamName appendVersion messageDetails
12-
|> ExceptionHandler.simpleExceptionHandler
12+
|> ExceptionsHandler.simpleExceptionHandler
1313

1414
let appendNewMessages (store: SqlStreamStore.IStreamStore)
1515
(streamName: StreamName)
1616
(appendVersion: AppendVersion)
1717
(messages: MessageDetails list)
1818
: Async<Result<AppendResult, string>> =
1919
AppendRaw.appendNewMessages store streamName appendVersion messages
20-
|> ExceptionHandler.simpleExceptionHandler
20+
|> ExceptionsHandler.simpleExceptionHandler
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module ExceptionHandler
1+
module ExceptionsHandler
22

33
let simpleExceptionHandler (op: Async<'res>): Async<Result<'res, string>> =
44
op

src/Read.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ module Read =
99
(msgCount: MessageCount)
1010
: Async<Result<ReadAllPage, string>> =
1111
ReadRaw.readFromAllStream store readingDirection startPositionInclusive msgCount
12-
|> ExceptionHandler.simpleExceptionHandler
12+
|> ExceptionsHandler.simpleExceptionHandler
1313

1414
let readFromStream store readingDirection streamName readVersion msgCount =
1515
ReadRaw.readFromStream store readingDirection streamName readVersion msgCount
16-
|> ExceptionHandler.simpleExceptionHandler
16+
|> ExceptionsHandler.simpleExceptionHandler

src/SqlStreamStore.FSharp.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<ItemGroup>
1414
<Compile Include="AsyncExtras.fs" />
15-
<Compile Include="ExceptionHandler.fs" />
15+
<Compile Include="ExceptionsHandler.fs" />
1616
<Compile Include="Types.fs" />
1717
<Compile Include="AppendRaw.fs" />
1818
<Compile Include="ReadRaw.fs" />

0 commit comments

Comments
 (0)