Everything is in the title.
An example:
/* Current Division init */
public init(@ContentBuilder<Content> content: () -> [Content]) {
self.content = content()
}
/* Replacement */
public init(@ContentBuilder<Content> content: () throws -> [Content]) rethrows {
self.content = try content()
}