Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/Exceptions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ Links:
baremodule Exceptions

"This module contains all inner parts of this package."
module Internal
baremodule Internal

export @exception

using Base

# Load exceptions
include("include/exceptions.jl")
Base.include(Internal, "include/exceptions.jl")

# Load macros
include("include/exception.jl")
Base.include(Internal, "include/exception.jl")

end

Expand Down